:root {
  --bg: #0a0a0b;
  --bg-2: #111114;
  --bg-3: #17171c;
  --line: #24242b;
  --text: #f3f3f5;
  --muted: #9a9aa6;
  --dim: #6b6b78;
  --accent: #d4a574;
  --accent-2: #b8854a;
  --accent-glow: rgba(212, 165, 116, 0.18);
  --success: #6ee7b7;
  --radius: 14px;
  --radius-lg: 20px;
  --container: 1240px;
  --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: 'Unbounded', 'Manrope', sans-serif; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 4vw, 46px); margin-bottom: 16px; }
h3 { font-size: clamp(20px, 2vw, 24px); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section--tight { padding: 70px 0; }
.section--alt { background: var(--bg-2); }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head--left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.lead { color: var(--muted); font-size: 17px; max-width: 640px; margin: 0 auto; }
.section-head--left .lead { margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all .25s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--accent);
  color: #1a1306;
  box-shadow: 0 8px 24px -10px var(--accent-glow);
}
.btn--primary:hover { background: #e0b585; transform: translateY(-1px); box-shadow: 0 14px 32px -12px var(--accent-glow); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { padding: 18px 34px; font-size: 16px; }
.btn--block { width: 100%; }

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 10, 11, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.04em;
}
.logo__mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  color: #0a0a0b;
  font-weight: 800;
  font-size: 15px;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav > a, .nav > .nav-item > a, .nav-item__trigger {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
}
.nav > a:hover, .nav-item:hover .nav-item__trigger { color: var(--text); }
.nav-item { position: relative; }
.nav-item__trigger { cursor: pointer; padding: 28px 0; }
.nav-item__trigger svg { width: 11px; transition: transform .25s ease; }
.nav-item:hover .nav-item__trigger svg { transform: rotate(180deg); color: var(--accent); }

.header__actions { display: flex; align-items: center; gap: 14px; }
.header__phone {
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__phone:hover { color: var(--accent); }
.icon-btns { display: flex; gap: 8px; }
.icon-btn {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  transition: all .2s ease;
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }
.icon-btn svg { width: 16px; height: 16px; }

.burger { display: none; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 8px; place-items: center; }
.burger svg { width: 18px; }

.megamenu {
  position: fixed;
  top: var(--header-h);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(1080px, calc(100vw - 48px));
  max-height: calc(100vh - var(--header-h) - 24px);
  overflow-y: auto;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 99;
}
.nav-item:hover .megamenu,
.nav-item:focus-within .megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-item::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 16px;
}
.megamenu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 36px;
}
.mm-col__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.mm-col__head-icon {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(212,165,116,0.1);
  color: var(--accent);
  flex-shrink: 0;
}
.mm-col__head-icon svg { width: 16px; height: 16px; }
.mm-col__list { display: flex; flex-direction: column; gap: 2px; }
.mm-col__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: all .18s ease;
}
.mm-col__list a:hover { color: var(--text); background: var(--bg-3); }
.mm-col__list a::after {
  content: '→';
  opacity: 0;
  transform: translateX(-4px);
  transition: all .18s ease;
  color: var(--accent);
  font-size: 13px;
}
.mm-col__list a:hover::after { opacity: 1; transform: translateX(0); }
.megamenu__footer {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.megamenu__hint { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.megamenu__hint svg { width: 14px; color: var(--accent); }

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 70% 30%, var(--accent-glow), transparent 60%),
    linear-gradient(180deg, #0a0a0b 0%, #0e0e12 100%);
  z-index: 0;
}
.hero__bg {
  position: absolute;
  top: 0; right: -8%;
  width: 70%;
  height: 100%;
  background-image: url('/themes/detailing/assets/img/home/home-hero-detailing-studio.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.2) 0%, rgba(10,10,11,0.5) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 720px; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(212, 165, 116, 0.08);
  border: 1px solid rgba(212, 165, 116, 0.22);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero__tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.hero h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.04;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--accent); font-style: italic; font-family: 'Unbounded', serif; font-weight: 500; }
.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__trust { display: flex; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--accent);
}
.trust-item__icon svg { width: 20px; height: 20px; }
.trust-item__label { font-size: 13px; color: var(--muted); }
.trust-item__value { font-weight: 700; font-size: 15px; }

.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-2);
  cursor: pointer;
  transition: transform .35s ease;
}
.cat::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.cat:nth-child(1)::before { background-image: url('/themes/detailing/assets/img/home/category-body-detailing.webp'); }
.cat:nth-child(2)::before { background-image: url('/themes/detailing/assets/img/home/category-interior-detailing.webp'); }
.cat:nth-child(3)::before { background-image: url('/themes/detailing/assets/img/home/category-protection-ppf.webp'); }
.cat:nth-child(4)::before { background-image: url('/themes/detailing/assets/img/home/category-style-wrap.webp'); }
.cat::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0) 30%, rgba(10,10,11,0.95) 100%);
}
.cat:hover::before { transform: scale(1.06); }
.cat__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; z-index: 2; }
.cat__name { font-family: 'Unbounded', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.cat__list { font-size: 14px; color: var(--muted); display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.cat__arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 2;
  transition: all .3s ease;
}
.cat:hover .cat__arrow { background: var(--accent); color: #1a1306; border-color: var(--accent); }
.cat__arrow svg { width: 14px; height: 14px; }

.prices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.price-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.price-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(212,165,116,0.1);
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.price-card__icon svg { width: 22px; height: 22px; }
.price-card h3 { font-size: 17px; margin-bottom: 8px; }
.price-card p { font-size: 14px; color: var(--muted); margin-bottom: 18px; flex-grow: 1; }
.price-card__price { display: flex; align-items: baseline; gap: 6px; padding-top: 16px; border-top: 1px solid var(--line); }
.price-card__from { font-size: 13px; color: var(--dim); }
.price-card__sum { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 22px; color: var(--accent); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
}
.stat { padding: 44px 36px; border-right: 1px solid var(--line); position: relative; }
.stat:last-child { border-right: none; }
.stat__num {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}
.stat__label { color: var(--muted); font-size: 15px; }

.process { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; counter-reset: step; }
.step {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  counter-increment: step;
  transition: all .25s ease;
}
.step:hover { border-color: var(--accent); }
.step::before {
  content: '0' counter(step);
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--accent);
  opacity: 0.25;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}
.step h3 { font-size: 15px; margin-bottom: 8px; font-family: 'Manrope', sans-serif; font-weight: 700; letter-spacing: 0; }
.step p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

.filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.filter {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: all .2s ease;
}
.filter:hover { color: var(--text); border-color: var(--text); }
.filter.is-active { background: var(--accent); color: #1a1306; border-color: var(--accent); }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  cursor: pointer;
}
.case__img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s ease; }
.case:hover .case__img { transform: scale(1.05); }
.case::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,10,11,0.92) 100%); }
.case__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; z-index: 2; display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.case__title { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 16px; margin-bottom: 4px; }
.case__sub { font-size: 13px; color: var(--muted); }
.case__badge { background: rgba(212,165,116,0.95); color: #1a1306; font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 6px; letter-spacing: 0.04em; text-transform: uppercase; }
.portfolio-cta { text-align: center; margin-top: 40px; }

.reviews-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.yandex-rating { display: inline-flex; align-items: center; gap: 12px; padding: 14px 22px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; font-size: 14px; }
.yandex-rating__stars { color: var(--accent); font-size: 15px; letter-spacing: 2px; }
.yandex-rating__score { font-weight: 700; font-size: 17px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.review__stars { color: var(--accent); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.review__text { font-size: 15px; line-height: 1.6; color: var(--text); margin-bottom: 22px; flex-grow: 1; }
.review__author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: grid; place-items: center; font-weight: 700; color: #1a1306; }
.review__name { font-weight: 600; font-size: 14px; }
.review__car { font-size: 12.5px; color: var(--muted); }

.brands { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-2); }
.brand { padding: 36px 20px; display: grid; place-items: center; border-right: 1px solid var(--line); font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.05em; color: var(--muted); transition: color .25s ease; text-align: center; }
.brand:last-child { border-right: none; }
.brand:hover { color: var(--accent); }
.brand img { max-height: 36px; width: auto; filter: grayscale(1) opacity(0.6); transition: filter .25s ease; }
.brand:hover img { filter: grayscale(0) opacity(1); }

.promo-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.promo { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: 48px; min-height: 280px; background: var(--bg-2); border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.promo::before { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.35; z-index: 0; }
.promo--car::before { background-image: url('/themes/detailing/assets/img/home/promo-replacement-car.webp'); }
.promo--cert::before { background-image: url('/themes/detailing/assets/img/home/promo-gift-certificate.webp'); }
.promo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,11,0.85) 0%, rgba(10,10,11,0.4) 100%); z-index: 1; }
.promo > * { position: relative; z-index: 2; }
.promo__tag { font-size: 12px; font-weight: 600; color: var(--accent); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 14px; }
.promo h3 { font-family: 'Unbounded', sans-serif; font-size: 28px; margin-bottom: 12px; max-width: 320px; }
.promo p { color: var(--muted); font-size: 15px; max-width: 360px; margin-bottom: 28px; }

.team { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.team__photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, transparent 60%, rgba(10,10,11,0.5)),
    url('/themes/detailing/assets/img/home/team-founder-detailing.webp') center/cover;
  position: relative;
}
.team__quote { font-family: 'Unbounded', sans-serif; font-size: 28px; line-height: 1.3; font-weight: 500; margin: 20px 0 28px; }
.team__quote span { color: var(--accent); font-style: italic; }
.team__sig { display: flex; align-items: center; gap: 14px; }
.team__sig-name { font-weight: 700; font-size: 16px; }
.team__sig-role { font-size: 13px; color: var(--muted); }
.team__list { margin-top: 24px; display: grid; gap: 12px; }
.team__list-item { display: flex; gap: 12px; font-size: 14.5px; color: var(--muted); }
.team__list-item::before { content: '✓'; color: var(--accent); font-weight: 700; }

.faq { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-size: 17px; font-weight: 600; transition: color .2s ease; }
.faq-q:hover { color: var(--accent); }
.faq-q__plus { width: 28px; height: 28px; flex-shrink: 0; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 18px; font-weight: 300; color: var(--accent); transition: transform .3s ease; }
.faq-item.is-open .faq-q__plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; color: var(--muted); font-size: 15.5px; line-height: 1.65; }
.faq-item.is-open .faq-a { max-height: 600px; padding-bottom: 24px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .25s ease; display: flex; flex-direction: column; }
.post:hover { transform: translateY(-3px); border-color: var(--accent); }
.post__img { aspect-ratio: 16/10; background-size: cover; background-position: center; background-color: var(--bg-3); }
.post__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post__meta { display: flex; gap: 14px; font-size: 12px; color: var(--dim); margin-bottom: 12px; }
.post__meta span { display: flex; align-items: center; gap: 6px; }
.post h3 { font-size: 17px; line-height: 1.35; font-family: 'Manrope', sans-serif; font-weight: 700; letter-spacing: 0; margin-bottom: 12px; }
.post__excerpt { font-size: 14px; color: var(--muted); line-height: 1.55; }

.form-cta {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 80px;
  background:
    radial-gradient(ellipse 80% 50% at 80% 30%, var(--accent-glow), transparent 70%),
    linear-gradient(135deg, #15151a 0%, #0d0d10 100%);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.form-cta h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 18px; }
.form-cta__sub { color: var(--muted); font-size: 17px; margin-bottom: 28px; }
.form-cta__list { display: grid; gap: 14px; list-style: none; padding: 0; }
.form-cta__list li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.form-cta__list li svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.form { background: rgba(0,0,0,0.4); backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; display: grid; gap: 14px; }
.form__title { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 20px; margin-bottom: 6px; }
.form__hint { font-size: 13px; color: var(--muted); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.form__hint::before { content: ''; width: 8px; height: 8px; background: var(--success); border-radius: 50%; box-shadow: 0 0 10px var(--success); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: 0.6; } }
.input { width: 100%; padding: 16px 18px; background: rgba(0,0,0,0.5); border: 1px solid var(--line); border-radius: 10px; color: var(--text); font-size: 15px; font-family: inherit; transition: border-color .2s ease; }
.input:focus { outline: none; border-color: var(--accent); }
.input::placeholder { color: var(--dim); }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.checkbox-row input { accent-color: var(--accent); margin-top: 3px; }
.checkbox-row a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.form__error { color: #f56565; font-size: 13px; }
.form__success { color: var(--success); font-size: 14px; padding: 12px; background: rgba(110,231,183,0.08); border-radius: 8px; border: 1px solid rgba(110,231,183,0.2); }

.contacts { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.contacts__info { padding: 56px 48px; background: var(--bg-2); }
.contacts__info h2 { margin-bottom: 24px; }
.contact-block { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-block:last-child { border-bottom: none; }
.contact-block__label { font-size: 12px; color: var(--dim); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }
.contact-block__value { font-size: 18px; font-weight: 600; }
.contact-block__value a:hover { color: var(--accent); }
.contacts__socials { display: flex; gap: 10px; margin-top: 8px; }
.contacts__map {
  background:
    linear-gradient(135deg, rgba(10,10,11,0.55), rgba(10,10,11,0.2)),
    url('/themes/detailing/assets/img/home/contacts-studio-exterior.webp') center/cover;
  position: relative;
  min-height: 480px;
}
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); background: var(--accent); color: #1a1306; padding: 12px 18px; border-radius: 10px; font-weight: 700; font-size: 14px; white-space: nowrap; box-shadow: 0 12px 30px rgba(0,0,0,0.5); }
.map-pin::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 8px solid transparent; border-top-color: var(--accent); }

.footer { padding: 70px 0 32px; border-top: 1px solid var(--line); background: var(--bg-2); margin-top: 60px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer__about { color: var(--muted); font-size: 14px; margin-top: 18px; max-width: 320px; line-height: 1.6; }
.footer__title { font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; color: var(--text); }
.footer__list { display: flex; flex-direction: column; gap: 10px; }
.footer__list a, .footer__list span { color: var(--muted); font-size: 14px; }
.footer__list a:hover { color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--line); font-size: 13px; color: var(--dim); flex-wrap: wrap; gap: 16px; }
.footer__bottom a:hover { color: var(--text); }

.float-msgr { position: fixed; right: 24px; bottom: 24px; z-index: 90; display: flex; flex-direction: column; gap: 10px; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(0,0,0,0.5); transition: transform .25s ease; position: relative; }
.float-btn:hover { transform: scale(1.08); }
.float-btn--wa { background: #25D366; color: white; }
.float-btn--tg { background: #229ED9; color: white; }
.float-btn svg { width: 26px; height: 26px; }

.mobile-bar { display: none; }
.mobile-menu { position: fixed; inset: 0; z-index: 200; background: rgba(10,10,11,0.98); backdrop-filter: blur(20px); padding: 24px; display: none; flex-direction: column; gap: 8px; }
.mobile-menu.is-open { display: flex; }
.mobile-menu__close { align-self: flex-end; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; display: grid; place-items: center; margin-bottom: 12px; }
.mobile-menu__scroll { flex: 1; overflow-y: auto; }
.mobile-menu a, .mm-acc__head { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 18px 8px; font-family: 'Unbounded', sans-serif; font-size: 20px; font-weight: 600; border-bottom: 1px solid var(--line); text-align: left; }
.mm-acc__head svg { width: 16px; transition: transform .25s ease; color: var(--accent); }
.mm-acc.is-open .mm-acc__head svg { transform: rotate(180deg); }
.mm-acc__body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.mm-acc.is-open .mm-acc__body { max-height: 1200px; }
.mm-acc__group { padding: 14px 0 4px; }
.mm-acc__group-title { font-family: 'Unbounded', sans-serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); padding: 6px 8px; }
.mm-acc__body a { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 500; padding: 10px 8px; border-bottom: none; color: var(--muted); }
.mm-acc__body a:hover { color: var(--text); }
.mobile-menu__cta { margin-top: 24px; font-family: 'Manrope', sans-serif !important; }

@media (max-width: 1100px) {
  .cats { grid-template-columns: repeat(2, 1fr); }
  .prices-grid { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .brands { grid-template-columns: repeat(3, 1fr); }
  .brand:nth-child(3) { border-right: none; }
  .brand:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav, .header__phone, .icon-btns { display: none; }
  .burger { display: grid; }
  .section { padding: 70px 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:last-child, .stat:nth-last-child(2) { border-bottom: none; }
  .portfolio-grid, .reviews-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .promo-dual { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; gap: 32px; }
  .form-cta { grid-template-columns: 1fr; padding: 48px 32px; }
  .contacts { grid-template-columns: 1fr; }
  .contacts__map { min-height: 320px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .float-msgr { bottom: 84px; }
}
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .section { padding: 60px 0; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 40px); padding-bottom: 60px; }
  .hero__bg { width: 100%; opacity: 0.25; mask-image: none; -webkit-mask-image: none; }
  .hero__ctas .btn { flex: 1; }
  .hero__trust { gap: 18px; }
  .cats { grid-template-columns: 1fr; }
  .prices-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .brands { grid-template-columns: 1fr 1fr; }
  .brand { border-right: 1px solid var(--line) !important; border-bottom: 1px solid var(--line); }
  .brand:nth-child(2n) { border-right: none !important; }
  .brand:nth-last-child(-n+2) { border-bottom: none; }
  .portfolio-grid, .reviews-grid, .blog-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-bottom: 1px solid var(--line); border-right: none; }
  .stat:last-child { border-bottom: none; }
  .promo { padding: 32px; min-height: 220px; }
  .form { padding: 28px 22px; }
  .contacts__info { padding: 40px 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .mobile-bar { display: grid; grid-template-columns: 1fr 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: rgba(15,15,18,0.96); backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding: 10px 12px env(safe-area-inset-bottom, 10px); gap: 8px; }
  .mobile-bar a { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px 4px; border-radius: 10px; font-size: 11px; font-weight: 600; }
  .mobile-bar a svg { width: 20px; height: 20px; }
  .mobile-bar a:nth-child(3) { background: var(--accent); color: #1a1306; }
  .float-msgr { bottom: 84px; right: 16px; }
  .float-btn { width: 50px; height: 50px; }
}

.fade-in { opacity: 0; transform: translateY(20px); transition: all .7s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }
