/* home */

 и <script> должны получить nonce атрибут.
  Ниже — strict CSP без unsafe-inline для внешних ресурсов:
-->
<meta http-equiv="Content-Security-Policy" content="
  default-src 'self';
  script-src 'self';
  style-src 'self' https://fonts.googleapis.com;
  font-src 'self' https://fonts.gstatic.com;
  img-src 'self' data: https:;
  connect-src 'self';
  frame-ancestors 'none';
  upgrade-insecure-requests;
">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Юридическое бюро «Вектор Права» — профессиональная ликвидация ООО и фирм с долгами в Москве. С 2000 года. 800+ закрытых дел.">

<!-- п.13: полные OG-теги -->
<meta property="og:title"       content="Вектор Права — Ликвидация ООО в Москве">
<meta property="og:description" content="Ликвидация ООО и фирм с долгами. Полное юридическое сопровождение. Бесплатная консультация.">
<meta property="og:type"        content="website">
<meta property="og:url"         content="https://likvidation.ru/">
<meta property="og:image"       content="https://likvidation.ru/og-cover.jpg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:locale"      content="ru_RU">
<meta name="twitter:card"       content="summary_large_image">
<meta name="twitter:title"      content="Вектор Права — Ликвидация ООО в Москве">
<meta name="twitter:image"      content="https://likvidation.ru/og-cover.jpg">
<link rel="canonical"           href="https://likvidation.ru/">

<title>Вектор Права — Ликвидация ООО и фирм в Москве</title>

<!-- п.9: non-blocking Google Fonts + display=swap -->
<!-- п.15: Inter без 300 weight — он нигде не используется (-14KB) -->
<!-- п.10: один non-blocking запрос к Google Fonts (preload дублировал его) -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet"
  href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&family=Inter:wght@400;500;600&display=swap"
  media="print" onload="this.media='all'">
<noscript>
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&family=Inter:wght@400;500;600&display=swap">
</noscript>

<!-- п.7: единый CSS-файл -->
<link rel="stylesheet" href="style.css">

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "LegalService",
  "name": "Вектор Права",
  "description": "Юридическое бюро по ликвидации ООО и фирм с долгами в Москве",
  "telephone": "+7-495-772-44-87",
  "url": "https://likvidation.ru",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "ул. Тверская, 7",
    "addressLocality": "Москва",
    "addressCountry": "RU"
  },
  "openingHours": "Mo-Fr 09:00-19:00",
  "priceRange": "от 30 000 ₽"
}
</script>

<style>
/* ── PAGE-SPECIFIC: index.html ──────────────────────── */

/* Hero */
.hero {
  /* Фиксированная высота вместо 100vh — на 2K мониторах 100vh = 1440px
     что перекрывает trust-bar. 780px достаточно для всего контента. */
  min-height: 780px;
  height: calc(100vh - 120px); /* вычитаем хедер чтобы trust-bar был виден */
  max-height: 900px;
  background: var(--navy);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}

/* ── ВИДЕО ФОН ──────────────────────────────────────
   object-fit:cover — видео заполняет весь hero
   без чёрных полос, независимо от aspect ratio.
   z-index:0 — под контентом и overlay.
─────────────────────────────────────────────────── */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ── OVERLAY ────────────────────────────────────────
   Затемняет видео слева сильнее (под текст),
   справа светлее (под форму-карточку не нужно).
   Градиент слева направо: почти непрозрачный → полупрозрачный.
   Дополнительный радиальный слой добавляет глубину.
─────────────────────────────────────────────────── */
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  /* Осветлили: .82 → .75 слева, .65 → .52 справа — текст читается, видео видно */
  background:
    linear-gradient(
      to right,
      rgba(14,26,58,.82) 0%,
      rgba(14,26,58,.65) 45%,
      rgba(14,26,58,.52) 100%
    ),
    radial-gradient(ellipse 70% 80% at 20% 50%, rgba(14,26,58,.18) 0%, transparent 70%);
}

/* Fallback: если видео не загрузилось — показываем gradient */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 50%, rgba(26,61,46,.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 15% 80%, rgba(107,26,42,.12) 0%, transparent 60%),
    linear-gradient(135deg, #0d1526 0%, #162040 50%, #0d1526 100%);
}

/* Reduced motion: отключаем видео (пользователь предпочитает меньше движения) */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

.hero-grid {
  position: absolute; inset: 0;
  z-index: 2; /* поверх overlay, под контентом (z-index:2 у .hero-content) */
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.4) 0%, transparent 75%);
  mask-image:         radial-gradient(ellipse at center, rgba(0,0,0,.4) 0%, transparent 75%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; flex: 1;
  display: grid; grid-template-columns: 1fr 420px; gap: 72px;
  align-items: center; max-width: 1400px; margin: 0 auto;
  padding: 120px 40px 60px; width: 100%;
}
.hero-eyebrow { color: var(--gold); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero-title {
  color: var(--white); margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw, 4rem); line-height: 1.1;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub { color: rgba(255,255,255,.6); font-size: 1rem; max-width: 500px; margin-bottom: 40px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

/* Stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08); max-width: 520px;
}
.stat-item { background: rgba(14,26,58,.6); padding: 18px 20px; }
.stat-value {
  font-family: 'Cormorant Garamond', serif; font-size: 1.9rem;
  font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 4px;
}
.stat-value .accent { color: var(--gold); }
.stat-label { font-size: .65rem; color: rgba(255,255,255,.4); letter-spacing: .04em; line-height: 1.35; }

/* Form card */
.hero-form-card {
  background: var(--white); padding: 40px 36px; border-radius: 4px;
  box-shadow: 0 40px 80px rgba(0,0,0,.4); position: relative;
}
.hero-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px 4px 0 0;
}
.form-eyebrow { color: var(--gold); margin-bottom: 6px; }
.form-title { font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.form-sub   { font-size: .8rem; color: var(--muted); margin-bottom: 24px; }
.form-guarantee { display: flex; align-items: center; gap: 10px; margin-top: 14px; padding: 12px; background: var(--snow); border-radius: var(--radius); }
.form-guarantee svg { width: 22px; height: 22px; fill: var(--gold); flex-shrink: 0; }
/* п.6 форм: strong — block чтобы текст не склеивался */
.form-guarantee-text strong { display: block; font-size: .75rem; color: var(--ink); margin-bottom: 2px; }
.form-guarantee-text { font-size: .72rem; color: var(--mid); line-height: 1.4; }

/* Mobile CTA (вместо формы на мобиле) */
.mobile-form-btn {
  display: none; width: 100%; padding: 16px;
  background: var(--gold); color: var(--white); border: none;
  font-size: .9rem; font-weight: 600; letter-spacing: .05em;
  cursor: pointer; border-radius: 2px; font-family: 'Inter', sans-serif;
  transition: background-color .25s; margin-bottom: 32px;
}
.mobile-form-btn:hover { background-color: var(--gold-light); }

/* Hero cert bar */




/* п.6 + п.16: fill явный */





/* Trust bar */
.trust-bar { background: var(--snow); border-bottom: 1px solid var(--rule); }
.trust-bar-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; height: 68px;
}
.trust-item {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 0 14px; border-right: 1px solid var(--rule);
}
.trust-item:last-child { border-right: none; }
/* п.6 + п.16: fill через currentColor */
.trust-item svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }
.trust-item-text { font-size: .75rem; color: var(--mid); }
.trust-item-text strong { display: block; color: var(--ink); font-size: .78rem; font-weight: 600; }

/* Services */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.service-card {
  background: var(--white); padding: 32px 28px;
  text-decoration: none; color: inherit; display: block;
  position: relative; overflow: hidden;
  transition: background-color .2s;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0);
  transition: transform .3s ease;
}
.service-card:hover { background-color: var(--snow); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover .service-arrow { transform: translate(3px,-3px); color: var(--gold); }
.service-icon {
  width: 40px; height: 40px; border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  /* п.9: конкретные свойства */
  transition: border-color .25s, background-color .25s;
}
.service-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.service-card:hover .service-icon { border-color: var(--gold); background-color: rgba(184,146,42,.05); }
.service-card h3 { font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.35; }
.service-card p  { font-size: .78rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.service-arrow   { color: var(--muted); font-size: .8rem; transition: transform .25s, color .25s; display: inline-block; }

/* Cases */
.cases { background: var(--navy); }
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.06); }
.case-card { background: rgba(255,255,255,.03); padding: 40px 32px; transition: background-color .2s; }
.case-card:hover { background-color: rgba(255,255,255,.07); }
.case-badge { display: inline-block; padding: 4px 12px; border: 1px solid rgba(184,146,42,.4); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; border-radius: 1px; }
.case-problem { font-size: .72rem; color: rgba(255,255,255,.4); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .08em; }
.case-title   { font-size: .98rem; font-weight: 500; color: var(--white); margin-bottom: 20px; line-height: 1.45; }
.case-flow { display: flex; flex-direction: column; }
.case-step { display: flex; gap: 14px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.07); }
.case-step-label { font-size: .65rem; letter-spacing: .08em; color: rgba(255,255,255,.3); text-transform: uppercase; min-width: 76px; flex-shrink: 0; padding-top: 2px; }
.case-step-text  { font-size: .8rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.case-result     { margin-top: 18px; padding: 14px; background: rgba(184,146,42,.1); border-left: 2px solid var(--gold); }
.case-result-val  { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--white); font-weight: 300; }
.case-result-desc { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: 2px; }

/* Process  п.15: два разных класса вместо одного */
.process { background: var(--snow); }
.process-layout {
  display: grid; grid-template-columns: 380px 1fr; gap: 72px; align-items: start;
}
.process-aside-layout {
  display: grid; grid-template-columns: 380px 1fr; gap: 72px; align-items: start;
  margin-top: 48px;
}
.process-left .eyebrow { color: var(--gold); margin-bottom: 14px; }
.process-left h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; margin-bottom: 18px; }
.process-left p  { color: var(--muted); font-size: .92rem; margin-bottom: 32px; line-height: 1.75; }
.process-steps  { display: flex; flex-direction: column; }
.process-step {
  display: grid; grid-template-columns: 52px 1fr; gap: 22px;
  padding: 26px 0; border-bottom: 1px solid var(--rule);
}
.process-step:first-child { border-top: 1px solid var(--rule); }
.process-step:hover .process-step-num { color: var(--gold); }
.process-step-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--rule); font-weight: 300; line-height: 1; transition: color .25s; }
.process-step h3  { font-size: .92rem; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.process-step p   { font-size: .8rem; color: var(--muted); line-height: 1.65; }
.process-aside-col { position: sticky; top: calc(var(--header-h) + 16px); }
.process-cta-card {
  background: var(--navy); padding: 44px 40px; margin-bottom: 20px;
  position: relative; overflow: hidden;
}
.process-cta-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); }
.process-cta-card .eyebrow { color: var(--gold); margin-bottom: 10px; }
.process-cta-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--white); margin-bottom: 14px; }
.process-cta-card p  { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 24px; line-height: 1.7; }
.process-cta-features { list-style: none; margin-bottom: 24px; }
.process-cta-features li { font-size: .8rem; color: rgba(255,255,255,.6); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.07); display: flex; gap: 10px; }
.process-cta-features li::before { content: '✓'; color: var(--gold); flex-shrink: 0; }
.price-estimate { background: var(--white); border: 1px solid var(--rule); padding: 28px; }
.price-estimate h4  { font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.price-estimate > p { font-size: .78rem; color: var(--muted); margin-bottom: 18px; }
.est-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--rule); font-size: .8rem; }
.est-row:last-of-type { border-bottom: none; }
.est-row .label { color: var(--mid); }
.est-row .val   { font-weight: 600; color: var(--ink); }
.est-row .val.gold { color: var(--gold); }
/* п.12: разделитель строки без inline style */
.est-row--total { margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--rule); border-bottom: none; }

/* Why */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-top: 52px; }
.why-item { background: var(--white); padding: 40px 32px; position: relative; transition: background-color .2s; }
.why-item:hover { background-color: var(--snow); }
.why-item-icon {
  width: 44px; height: 44px; border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: border-color .25s, background-color .25s;
}
.why-item-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.why-item:hover .why-item-icon { border-color: var(--gold); background-color: rgba(184,146,42,.05); }
.why-item h3 { font-size: .95rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.why-item p  { font-size: .82rem; color: var(--muted); line-height: 1.7; }
.why-item-num { position: absolute; top: 28px; right: 28px; font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--rule); font-weight: 300; line-height: 1; pointer-events: none; }

/* Reviews */
.reviews { background: var(--snow); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.review-card { background: var(--white); border: 1px solid var(--rule); padding: 32px 28px; }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.review-stars  { color: var(--gold); font-size: .85rem; letter-spacing: 2px; }
.review-text   { font-size: .86rem; color: var(--graphite); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--rule); flex-wrap: wrap; gap: 8px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold); flex-shrink: 0; }
.review-author-name { font-weight: 600; font-size: .86rem; color: var(--ink); }
.review-author-role { font-size: .72rem; color: var(--muted); }

/* CTA section */
.cta-section { background: var(--navy); padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(184,146,42,.09) 0%, transparent 70%); }
.cta-section .eyebrow { color: var(--gold); margin-bottom: 14px; }
.cta-section h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; color: var(--white); margin-bottom: 14px; }
.cta-section > div > p { color: rgba(255,255,255,.5); max-width: 440px; margin: 0 auto 36px; font-size: .92rem; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-contacts { display: flex; justify-content: center; gap: 32px; margin-top: 44px; flex-wrap: wrap; }
.cta-contact-item { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.cta-ci-icon {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; flex-shrink: 0;
  transition: border-color .2s;
}
.cta-ci-icon svg { width: 16px; height: 16px; fill: rgba(255,255,255,.55); transition: fill .2s; }
.cta-contact-item:hover .cta-ci-icon { border-color: var(--gold); }
.cta-contact-item:hover .cta-ci-icon svg { fill: var(--gold); }
.ci-text { font-size: .72rem; color: rgba(255,255,255,.45); }
.ci-val  { font-size: .85rem; font-weight: 500; color: var(--white); transition: color .2s; }
.cta-contact-item:hover .ci-val { color: var(--gold); }

/* FAQ left panel */
.faq-grid { display: grid; grid-template-columns: 360px 1fr; gap: 72px; }
.faq-left .eyebrow { color: var(--gold); margin-bottom: 14px; }
.faq-left h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; margin-bottom: 18px; }
.faq-left p  { color: var(--muted); font-size: .9rem; margin-bottom: 28px; line-height: 1.75; }
.faq-contact { padding: 24px; background: var(--snow); border: 1px solid var(--rule); }
.faq-contact p { font-size: .78rem; color: var(--muted); margin-bottom: 5px; }
.faq-contact .phone { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--ink); text-decoration: none; font-weight: 300; display: block; }
.faq-contact .phone:hover { color: var(--gold); }
.faq-contact-hours { margin-top: 8px; font-size: .75rem; color: var(--muted); }

/* ── PAGE RESPONSIVE ───────────────────────────────── */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; gap: 36px; padding: 140px 28px 64px; }
  .hero-form-card { max-width: 520px; }
  .hero-stats { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  /* п.15: оба layout'а */
  .process-layout, .process-aside-layout { grid-template-columns: 1fr; }
  .process-aside-col { position: static; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  
  .trust-bar-inner { padding: 0 28px; }
}
@media (max-width: 900px) {
  .hero-content { padding: 100px 16px 52px; }
  
  
  
  .trust-bar-inner { flex-wrap: wrap; height: auto; padding: 10px 16px; }
  .trust-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--rule); padding: 10px 12px; justify-content: flex-start; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--rule); }
  .trust-item:nth-child(5)   { flex: 1 1 100%; border-right: none; border-bottom: none; }
}
@media (max-width: 640px) {
  .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-sub   { font-size: .9rem; margin-bottom: 24px; }
  .hero-actions { display: none; }
  .mobile-form-btn { display: block; }
  .hero-form-card  { display: none; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .cases-grid    { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .cta-contacts  { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-actions   { flex-direction: column; align-items: center; }
  .cta-actions .btn,
  .cta-actions .btn-outline-gold { width: 100%; max-width: 360px; }
  .process-aside-layout { display: block; }
}

/* ══════════════════════════════════════════════════════
   TOPBAR
   Тонкая полоска над хедером: адрес, часы, соцсети.
   Скрывается на мобиле — слишком мало места.
══════════════════════════════════════════════════════ */
.topbar {
  background: rgba(9,15,27,.97);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .7rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .02em;
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 7px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.topbar-left  { display: flex; align-items: center; gap: 10px; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-item  { display: flex; align-items: center; gap: 5px; }
.topbar-sep   { color: rgba(255,255,255,.15); }
.topbar-social {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.5);
  transition: background .2s, color .2s;
  text-decoration: none;
}
.topbar-social:hover { background: rgba(184,146,42,.25); color: var(--gold); }
.topbar-phone {
  color: rgba(255,255,255,.65); text-decoration: none; font-weight: 500;
  transition: color .2s;
}
.topbar-phone:hover { color: var(--gold); }
@media (max-width: 768px) { .topbar { display: none; } }

/* ══════════════════════════════════════════════════════
   CALL-BACK DROP — выпадающая форма «Заказать звонок»
══════════════════════════════════════════════════════ */
.call-back-toggle { position: relative; }

.call-back-drop {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: calc(var(--z-sticky) + 10);
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  transform: translateY(-110%);
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.call-back-drop.open {
  transform: translateY(0);
  pointer-events: auto;
}
.call-back-drop-inner {
  max-width: 600px; margin: 0 auto;
  padding: 24px 40px;
  position: relative;
}
.call-back-drop-title {
  font-size: .85rem; font-weight: 600; color: var(--ink);
  margin-bottom: 14px;
}
.call-back-drop-form {
  display: grid; grid-template-columns: 1fr 1fr auto;
  gap: 10px; align-items: start;
}
.call-back-drop-form .form-group { margin: 0; }
.call-back-drop-form .btn { padding: 10px 20px; white-space: nowrap; align-self: end; margin-bottom: 1px; }
.call-back-drop-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 1.1rem; line-height: 1;
  padding: 4px; transition: color .2s;
}
.call-back-drop-close:hover { color: var(--ink); }
@media (max-width: 600px) {
  .call-back-drop-form { grid-template-columns: 1fr; }
  .call-back-drop-inner { padding: 20px 16px; }
}

/* ══════════════════════════════════════════════════════
   STATS SECTION — отдельная секция со счётчиками
   Вынесена из hero, теперь между hero и trust-bar.
══════════════════════════════════════════════════════ */
.stats-section {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stats-card {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.stats-card:last-child { border-right: none; }
.stats-card:hover { background: rgba(255,255,255,.03); }
.stats-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stats-label {
  font-size: .8rem; font-weight: 500;
  color: var(--white); margin-bottom: 4px;
}
.stats-sub {
  font-size: .68rem; color: rgba(255,255,255,.35);
  letter-spacing: .04em; text-transform: uppercase;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stats-card { border-bottom: 1px solid rgba(255,255,255,.07); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-card { padding: 28px 16px; }
  .stats-val  { font-size: 2.2rem; }
}

/* ══════════════════════════════════════════════════════
   SERVICE CARDS — обновлённые карточки
   Крупнее, с бейджами, CTA-строкой внизу.
══════════════════════════════════════════════════════ */
.service-card-top {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.service-card .service-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(184,146,42,.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(184,146,42,.04);
  transition: border-color .2s, background .2s;
}
.service-card:hover .service-icon {
  border-color: var(--gold);
  background: rgba(184,146,42,.1);
}
.service-badge {
  font-size: .6rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: 3px 8px;
  border-radius: 2px;
  background: rgba(184,146,42,.12);
  color: var(--gold); border: 0.5px solid rgba(184,146,42,.3);
  white-space: nowrap;
}
.service-badge--hot {
  background: rgba(220,50,50,.1);
  color: #e05050; border-color: rgba(220,50,50,.25);
}
.service-card h3 {
  font-size: 1rem; font-weight: 600; color: var(--ink);
  margin-bottom: 10px; line-height: 1.3;
}
.service-card p {
  font-size: .8rem; color: var(--muted);
  line-height: 1.7; margin-bottom: 20px; flex: 1;
}
.service-card { display: flex; flex-direction: column; }
.service-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.service-cta {
  font-size: .75rem; font-weight: 500; color: var(--gold);
  letter-spacing: .02em;
}
.service-arrow {
  font-size: 1rem; color: var(--muted);
  transition: transform .2s, color .2s;
  display: block;
}
.service-card:hover .service-arrow { transform: translate(3px,-3px); color: var(--gold); }
.service-card--featured {
  background: rgba(184,146,42,.03);
  border: 1px solid rgba(184,146,42,.18) !important;
}
.service-card--featured:hover { background: rgba(184,146,42,.06); }
