/* ===================================================================
   Частный агент по недвижимости — лендинг
   Тема «Доверие»: глубокий navy + золото. Mobile-first.
   Палитра меняется через CSS-переменные (легко перекрасить под брендинг).
   =================================================================== */

:root {
  --navy:      #0E2238;   /* основной фон */
  --navy-2:    #112A46;
  --surface:   #15304E;   /* карточки */
  --surface-2: #1A3A5E;
  --line:      rgba(255,255,255,.10);
  --line-2:    rgba(255,255,255,.18);
  --text:      #EAF0F8;
  --muted:     #9FB1C7;
  --muted-2:   #6E839E;
  --accent:    #D4AF37;   /* золото */
  --accent-2:  #C49B2E;
  --accent-soft: rgba(212,175,55,.12);
  --accent-ink:#13243B;   /* текст на золоте */
  --ok:        #4FD1A1;
  --radius:    16px;
  --radius-lg: 24px;
  --maxw:      1180px;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Manrope', system-ui, -apple-system, sans-serif;
  --ease:      cubic-bezier(.22,.61,.36,1);
  --shadow:    0 26px 64px -22px rgba(0,0,0,.65);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 74px 0; position: relative; }
.accent-text { color: var(--accent); }

/* ---------- Заголовки ---------- */
.section__head { max-width: 680px; margin: 0 auto 42px; text-align: center; }
.eyebrow {
  display: inline-block;
  font: 700 12px/1 var(--sans);
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
  padding: 8px 16px; border: 1px solid var(--line-2); border-radius: 100px;
}
.section__title {
  font-family: var(--serif);
  font-weight: 600; line-height: 1.04;
  font-size: clamp(30px, 7vw, 52px);
  letter-spacing: .005em;
}
.section__title em { font-style: italic; color: var(--accent); }
.section__sub { color: var(--muted); margin-top: 14px; font-size: 16px; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: 700 15px/1 var(--sans);
  padding: 16px 28px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), background .25s, box-shadow .25s, border-color .25s, color .25s;
  white-space: nowrap; text-align: center;
}
.btn--accent {
  background: linear-gradient(135deg, #E6C964, var(--accent) 55%, var(--accent-2));
  color: var(--accent-ink);
  box-shadow: 0 12px 32px -10px rgba(212,175,55,.55);
}
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(212,175,55,.65); }
.btn--ghost { background: rgba(255,255,255,.04); color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); border-color: var(--accent); }
.btn--lg { padding: 18px 34px; font-size: 16px; }
.btn--sm { padding: 12px 20px; font-size: 14px; }
.btn--block { width: 100%; }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font: 600 13px/1 var(--sans); color: var(--text);
  background: rgba(255,255,255,.05); border: 1px solid var(--line-2);
  padding: 9px 16px; border-radius: 100px; margin-bottom: 22px;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(212,175,55,.22); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font: 600 13px/1 var(--sans); color: var(--muted);
  background: var(--surface); border: 1px solid var(--line); padding: 10px 15px; border-radius: 100px;
}
.chip svg { color: var(--accent); }

/* ---------- Фото-заглушки (силуэт здания) ---------- */
.ph-photo {
  background-color: var(--navy-2);
  background-image:
    radial-gradient(90% 70% at 50% 0%, rgba(212,175,55,.10), transparent 60%),
    linear-gradient(160deg, var(--surface-2), var(--navy-2)),
    url('assets/ph-building.svg');
  background-repeat: no-repeat;
  background-position: center top, center, center bottom;
  background-size: cover, cover, 86% auto;
}
.photo-ph {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  font: 700 11px/1 var(--sans); letter-spacing: .14em; color: var(--muted);
  text-transform: uppercase; white-space: nowrap;
  padding: 7px 13px; border-radius: 100px;
  background: rgba(14,34,56,.6); border: 1px solid var(--line-2);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}

/* =========================================================
   ВЕРХНЯЯ ПОЛОСА + ШАПКА
   ========================================================= */
.topbar { background: #0B1B2E; border-bottom: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 10px 26px; flex-wrap: wrap; height: auto; padding: 9px 0; text-align: center; }
.topbar__inner span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__inner svg { color: var(--accent); }
.topbar a:hover { color: var(--text); }
.topbar .sep { display: none; }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s, transform .35s var(--ease);
  border-bottom: 1px solid transparent;
  will-change: transform;
}
.site-header.scrolled { background: rgba(11,27,46,.85); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.site-header.hidden { transform: translateY(-100%); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 16px; }
.logo { display: inline-flex; align-items: center; gap: 11px; font-family: var(--sans); font-weight: 800; }
.logo__mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: linear-gradient(135deg, #E6C964, var(--accent-2));
  color: var(--accent-ink); border-radius: 10px;
  font-family: var(--serif); font-size: 19px; font-weight: 700;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__text b { font-size: 16px; letter-spacing: .02em; }
.logo__text small { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.nav { display: none; gap: 28px; }
.nav a { font-size: 15px; color: var(--muted); transition: color .2s; }
.nav a:hover { color: var(--text); }
.header__cta { display: none; }

.burger { display: flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s var(--ease); }
.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); }

.mobile-menu {
  position: fixed; top: 66px; left: 0; right: 0; z-index: 99;
  background: rgba(11,27,46,.98); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px; padding: 16px 20px 24px;
  animation: slideDown .3s var(--ease);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 13px 4px; font-size: 17px; color: var(--text); border-bottom: 1px solid var(--line); }
.mobile-menu a.btn { border: none; margin-top: 12px; color: var(--accent-ink); }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px);} to { opacity: 1; transform: translateY(0);} }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 120px 0 60px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 82% 5%, rgba(212,175,55,.14), transparent 58%),
    linear-gradient(180deg, #0C1E33 0%, var(--navy) 60%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(80% 60% at 50% 28%, #000, transparent 76%);
}
.hero__glow { position: absolute; top: -16%; right: -8%; width: 540px; height: 540px; background: radial-gradient(circle, rgba(212,175,55,.18), transparent 65%); filter: blur(24px); pointer-events: none; }
.hero__inner { position: relative; display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
.hero__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(40px, 11vw, 76px); line-height: 1.02; letter-spacing: .005em; margin-bottom: 20px;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__subtitle { color: var(--muted); font-size: clamp(16px, 4.4vw, 19px); max-width: 540px; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.hero__actions .btn { flex: 1 1 auto; min-width: 210px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 14px 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero__trust li { font-size: 13px; color: var(--muted); display: flex; flex-direction: column; gap: 3px; }
.hero__trust strong { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--text); line-height: 1; }
.hero__trust .stars { color: var(--accent); }

.hero__media { position: relative; }
.hero__photo {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  border: 1px solid var(--line-2); overflow: hidden; box-shadow: var(--shadow); max-width: 460px; margin: 0 auto;
}
.hero__card {
  position: absolute; background: rgba(17,42,70,.9); backdrop-filter: blur(10px);
  border: 1px solid var(--line-2); border-radius: 15px; padding: 13px 17px;
  display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.hero__card-num { font-family: var(--serif); font-size: 26px; font-weight: 700; line-height: 1; color: var(--accent); }
.hero__card-lbl { font-size: 12px; color: var(--muted); margin-top: 4px; }
.hero__card--1 { bottom: 22px; left: -6px; }
.hero__card--2 { top: 28px; right: -6px; }

/* =========================================================
   ПОЛОСА РЕЙТИНГОВ / ДОВЕРИЯ
   ========================================================= */
.ratings { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--navy-2); padding: 30px 0; }
.ratings__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 16px; text-align: center; }
.rating-item__top { display: flex; align-items: center; justify-content: center; gap: 8px; }
.rating-item__score { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--text); line-height: 1; }
.rating-item__stars { color: var(--accent); font-size: 13px; letter-spacing: 1px; }
.rating-item__src { font-size: 12.5px; color: var(--muted); margin-top: 7px; letter-spacing: .04em; }

/* =========================================================
   ПРЕИМУЩЕСТВА
   ========================================================= */
.features__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.feature-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: transform .3s var(--ease), border-color .3s, background .3s; }
.feature-card:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--surface-2); }
.feature-card__icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; background: var(--accent-soft); color: var(--accent); margin-bottom: 16px; }
.feature-card h3 { font-family: var(--sans); font-size: 18px; font-weight: 700; margin-bottom: 9px; }
.feature-card p { color: var(--muted); font-size: 15px; }

/* =========================================================
   ОБО МНЕ
   ========================================================= */
.about__inner { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.about__photo { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); border: 1px solid var(--line-2); overflow: hidden; max-width: 420px; margin: 0 auto; }
.about .eyebrow { margin-bottom: 14px; }
.about__lead { color: var(--muted); font-size: 17px; margin: 16px 0 24px; }
.about__lead strong { color: var(--text); }
.about__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 14px; margin-bottom: 24px; }
.about__stats li { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.stat__num { display: block; font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--accent); line-height: 1; }
.stat__lbl { display: block; font-size: 13px; color: var(--muted); margin-top: 6px; }
.about__creds { display: flex; flex-wrap: wrap; gap: 10px; }
.about__sign { margin-top: 22px; font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--text); }

/* =========================================================
   УСЛУГИ
   ========================================================= */
.services__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.service-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; transition: transform .3s var(--ease), border-color .3s, background .3s; position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--accent), transparent); opacity: 0; transition: opacity .3s; }
.service-card:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--surface-2); }
.service-card:hover::before { opacity: 1; }
.service-card__icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px; background: var(--accent-soft); color: var(--accent); margin-bottom: 18px; }
.service-card h3 { font-family: var(--sans); font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 15px; }

/* =========================================================
   КАК Я РАБОТАЮ
   ========================================================= */
.how__steps { display: grid; grid-template-columns: 1fr; gap: 16px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; position: relative; }
.step__num { font-family: var(--serif); font-size: 40px; font-weight: 700; color: var(--accent); opacity: .9; line-height: 1; display: block; margin-bottom: 12px; }
.step h3 { font-family: var(--sans); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* =========================================================
   ВИТРИНА ОБЪЕКТОВ
   ========================================================= */
.objects__grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.object-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease), border-color .3s; display: flex; flex-direction: column; }
.object-card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.object-card__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.object-card__badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 7px; z-index: 2; }
.obj-badge { font: 700 11px/1 var(--sans); letter-spacing: .06em; padding: 7px 11px; border-radius: 100px; text-transform: uppercase; }
.obj-badge--deal { background: rgba(11,27,46,.78); color: var(--text); border: 1px solid var(--line-2); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.obj-badge--sold { background: #b14a4a; color: #fff; }
.obj-badge--gold { background: var(--accent); color: var(--accent-ink); }
.object-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.object-card__price { font-family: var(--serif); font-size: 27px; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 6px; }
.object-card__price .per { font-family: var(--sans); font-size: 14px; color: var(--muted); font-weight: 500; }
.object-card__title { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.object-card__meta { display: flex; flex-wrap: wrap; gap: 8px 14px; color: var(--muted); font-size: 13.5px; margin-bottom: 18px; }
.object-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.object-card__meta svg { color: var(--accent); }
.object-card__cta { margin-top: auto; }
.objects__more { text-align: center; margin-top: 30px; }

/* =========================================================
   КЕЙСЫ
   ========================================================= */
.cases__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.case-card { background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; }
.case-card__metric { font-family: var(--serif); font-size: 42px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.case-card__metric small { font-size: 18px; }
.case-card__label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.case-card p { color: var(--text); font-size: 15px; margin-bottom: 16px; }
.case-card figcaption { color: var(--muted); font-size: 14px; display: flex; align-items: center; gap: 10px; }
.case-card .ava { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); font-family: var(--serif); font-weight: 700; }

/* =========================================================
   ОТЗЫВЫ
   ========================================================= */
.reviews__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.review-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.review-card__stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 14px; font-size: 15px; }
.review-card blockquote { font-size: 16px; color: var(--text); margin-bottom: 18px; }
.review-card figcaption { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 15px; color: var(--muted); }
.ava { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); font-family: var(--serif); font-weight: 700; flex: 0 0 auto; }

/* =========================================================
   ГАРАНТИИ / БЕЗОПАСНОСТЬ
   ========================================================= */
.guarantees__inner { background: linear-gradient(180deg, var(--surface), var(--navy-2)); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 40px 26px; }
.guar-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.guar-item { display: flex; gap: 16px; align-items: flex-start; }
.guar-item__icon { width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 12px; background: var(--accent-soft); color: var(--accent); }
.guar-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.guar-item p { color: var(--muted); font-size: 14.5px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq__inner { max-width: 780px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color .25s; }
.faq-item[open] { border-color: var(--line-2); }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 22px; font-weight: 700; font-size: 16px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--serif); font-size: 28px; color: var(--accent); transition: transform .3s var(--ease); line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* =========================================================
   ЗАЯВКА
   ========================================================= */
.lead { overflow: hidden; }
.lead__glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 640px; height: 420px; background: radial-gradient(circle, rgba(212,175,55,.16), transparent 65%); filter: blur(24px); pointer-events: none; }
.lead__inner { position: relative; display: grid; grid-template-columns: 1fr; gap: 30px; background: linear-gradient(180deg, var(--surface), var(--navy-2)); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 38px 26px; box-shadow: var(--shadow); }
.lead__title { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 7.5vw, 44px); line-height: 1.06; margin-bottom: 16px; }
.lead__title em { font-style: italic; color: var(--accent); }
.lead__sub { color: var(--muted); font-size: 16px; margin-bottom: 22px; }
.lead__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.lead__list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text); }
.lead__list svg { color: var(--accent); flex: 0 0 auto; }
.lead__alt { display: flex; flex-wrap: wrap; gap: 12px; }
.lead__alt .btn { flex: 1 1 auto; min-width: 180px; }
.lead-form { display: flex; flex-direction: column; gap: 13px; background: var(--navy); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; }
.lead-form h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; margin-bottom: 4px; }
.lead-form p.hint { color: var(--muted); font-size: 13.5px; margin-bottom: 6px; }
.field label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; background: var(--surface); border: 1px solid var(--line-2); color: var(--text);
  padding: 14px 16px; border-radius: 12px; font: 500 15px/1.2 var(--sans); transition: border-color .2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.lead-form__note { font-size: 12px; color: var(--muted-2); text-align: center; }
.lead-form__msg { display: none; font-size: 14.5px; padding: 13px 16px; border-radius: 12px; text-align: center; }
.lead-form__msg.ok { display: block; background: rgba(79,209,161,.12); border: 1px solid rgba(79,209,161,.4); color: var(--ok); }
.lead-form__msg.err { display: block; background: rgba(177,74,74,.14); border: 1px solid rgba(177,74,74,.45); color: #f1a3a3; }

/* =========================================================
   КАРТА
   ========================================================= */
.map { padding-top: 0; }
.map__frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-2); height: 360px; filter: grayscale(.3) contrast(1.05); }
.map__frame iframe { width: 100%; height: 100%; border: 0; }

/* =========================================================
   ФУТЕР
   ========================================================= */
.footer { border-top: 1px solid var(--line); background: #0B1B2E; padding-top: 48px; }
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
.footer__brand p { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 340px; }
.footer__col h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.footer__col a { display: block; color: var(--muted); font-size: 15px; padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: var(--text); }
.footer__social { display: flex; gap: 12px; margin-top: 14px; }
.soc { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); color: var(--muted); transition: .25s var(--ease); }
.soc:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); transform: translateY(-3px); }
.footer__bottom { display: flex; flex-direction: column; gap: 8px; padding: 22px 20px 28px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted-2); }
.footer__bottom a { color: var(--muted-2); }
.footer__bottom a:hover { color: var(--muted); }

/* =========================================================
   FAB + STICKY CTA (моб.)
   ========================================================= */
.fab { position: fixed; right: 16px; bottom: 16px; z-index: 88; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, #E6C964, var(--accent-2)); color: var(--accent-ink); box-shadow: 0 14px 32px -8px rgba(212,175,55,.6); transition: transform .25s var(--ease); }
.fab:hover { transform: scale(1.08); }
.sticky-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; display: flex; gap: 10px; transform: translateY(160%); transition: transform .4s var(--ease); }
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { box-shadow: 0 14px 36px -8px rgba(212,175,55,.55); }

/* =========================================================
   АНИМАЦИЯ ПОЯВЛЕНИЯ
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   АДАПТИВ
   ========================================================= */
@media (min-width: 600px) {
  .topbar .sep { display: inline; color: var(--muted-2); }
  .ratings__grid { grid-template-columns: repeat(4, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .objects__grid { grid-template-columns: repeat(2, 1fr); }
  .cases__grid { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .about__stats { grid-template-columns: repeat(4, 1fr); }
  .guar-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 900px) {
  .section { padding: 100px 0; }
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
  .burger, .mobile-menu { display: none; }
  .hero__inner { grid-template-columns: 1.05fr .95fr; gap: 54px; }
  .about__inner { grid-template-columns: .9fr 1.1fr; gap: 56px; }
  .features__grid { grid-template-columns: repeat(4, 1fr); }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .objects__grid { grid-template-columns: repeat(3, 1fr); }
  .how__steps { grid-template-columns: repeat(5, 1fr); }
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
  .guar-grid { grid-template-columns: repeat(4, 1fr); }
  .lead__inner { grid-template-columns: 1.05fr .95fr; padding: 48px 44px; gap: 44px; }
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr; align-items: start; }
  .sticky-cta, .fab { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
