:root {
  --navy: #0f1f3d;
  --navy-light: #1a3158;
  --gold: #c9a227;
  --gold-light: #e4c65a;
  --red: #c41e3a;
  --red-hover: #a81830;
  --bg: #f0f3f8;
  --white: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(15, 31, 61, 0.08);
  --font: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }
.container { width: min(1180px, 92vw); margin: 0 auto; }
.gold { color: var(--gold); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: .75rem 0;
  min-height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.logo__icon {
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.logo__icon .icon { width: 22px; height: 22px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.logo__text strong { font-size: .95rem; }
.logo__text em { font-size: .8rem; color: var(--gold-light); font-style: normal; }
.nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: nowrap;
  margin: 0;
}
.nav a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
}
.nav a:hover { color: var(--gold); }
.header-contacts {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: flex-end;
  flex-shrink: 0;
}
.header-phone-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.25;
}
.header-cta { white-space: nowrap; }
.header-phone {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.header-hours { font-size: .75rem; color: rgba(255,255,255,.65); }
.burger {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  margin-left: auto;
  cursor: pointer;
}
.burger::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 7px 0 var(--gold), 0 -7px 0 var(--gold);
  margin: auto;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: .75rem;
  padding: 1rem 4vw 1.25rem;
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: .35rem 0;
}
body.menu-open { overflow: hidden; }

/* Icons */
.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold);
}
.icon--trust { width: 28px; height: 28px; }
.icon--feature {
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 10px;
  background: rgba(201, 162, 39, 0.15);
  box-sizing: content-box;
}
.icon--gold { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, background .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn--red {
  background: var(--red);
  color: var(--white);
  padding: .75rem 1.35rem;
  box-shadow: 0 6px 20px rgba(196, 30, 58, .35);
}
.btn--red:hover { background: var(--red-hover); }
.btn--gold { background: var(--gold); color: var(--navy); padding: .75rem 1.25rem; }
.btn--navy { background: var(--navy); color: var(--white); padding: .7rem 1.2rem; }
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  padding: .7rem 1.2rem;
}
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: .6rem 1rem;
}
.btn--sm { font-size: .85rem; padding: .55rem 1rem; }
.btn--lg { font-size: 1.05rem; padding: 1rem 1.5rem; }
.btn--block { width: 100%; }
.btn--white {
  background: var(--white);
  color: var(--navy);
  padding: .75rem 1.25rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.btn--white:hover { background: #f0f3f8; }

/* Hero */
.hero {
  background: var(--navy) url('../img/hero-bg.jpg') center / cover no-repeat;
  color: var(--white);
  padding: 3.5rem 0 4.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,31,61,.92) 0%, rgba(15,31,61,.75) 45%, rgba(15,31,61,.55) 100%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: center;
  position: relative;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 800;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 34rem;
  margin-bottom: 1.5rem;
}
.trust-row {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem 1rem;
}
.trust-row li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .85rem;
  color: rgba(255,255,255,.9);
}
.trust-row__icon {
  margin-top: .1rem;
  flex-shrink: 0;
}
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero-photo {
  position: relative;
  max-width: 420px;
  width: 100%;
}
.hero-photo > img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  object-fit: cover;
  object-position: top center;
  min-height: 380px;
  max-height: 520px;
}
.hero-card {
  position: absolute;
  left: -12px;
  bottom: 24px;
  background: linear-gradient(145deg, var(--navy-light), #0a1628);
  border: 1px solid rgba(201,162,39,.5);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  max-width: 240px;
  box-shadow: var(--shadow);
  display: flex;
  gap: .65rem;
  align-items: flex-start;
}
.hero-card__icon .icon { width: 28px; height: 28px; }
.hero-card p { margin: 0; font-size: .9rem; line-height: 1.35; }
.hero-card strong { color: var(--gold); }

/* Features bar */
.features-bar {
  background: var(--bg);
  padding: 0 0 3rem;
  margin-top: 0;
  position: relative;
  z-index: 2;
}
.features-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.feature-card__icon {
  display: block;
  margin-bottom: .75rem;
}
.feature-card h3 { margin: 0 0 .35rem; font-size: 1rem; color: var(--navy); }
.feature-card p { margin: 0; font-size: .85rem; color: var(--muted); }

/* Sections */
.section { padding: 4rem 0; }
.section--light { background: var(--bg); }
.section--navy { background: var(--navy); color: var(--white); }
.section--split { background: var(--bg); }
.section--benefits {
  background: var(--navy) url('../img/benefits-bg.jpg') center / cover no-repeat;
  color: var(--white);
  padding: 4.5rem 0;
  margin: 1rem 0;
  position: relative;
}
.section--benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,31,61,.94), rgba(15,31,61,.82));
}
.section--benefits .container { position: relative; z-index: 1; }
.section--benefits .section__title,
.section--benefits .section__lead { color: rgba(255,255,255,.95); }
.section--benefits .section__lead { color: rgba(255,255,255,.75); }
.section--blog {
  background: var(--bg) url('../img/blog-section-bg.jpg') center top / cover no-repeat;
  padding: 4.5rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.section__title--left { text-align: left; }
.section__lead--left { text-align: left; margin-left: 0; }
.header-phone--alt { font-size: .8rem; font-weight: 500; opacity: .85; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.benefit-item {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(201,162,39,.35);
  border-radius: var(--radius);
  padding: 1.25rem;
  backdrop-filter: blur(4px);
}
.benefit-item p { margin: .5rem 0 0; font-size: .95rem; line-height: 1.45; }
.benefit-item .icon--feature { background: rgba(201,162,39,.2); }
.notice--benefits {
  background: rgba(255,255,255,.12);
  border-left-color: var(--gold);
  color: rgba(255,255,255,.9);
  max-width: 720px;
  margin: 0 auto;
}
.yandex-reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.yandex-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: var(--white);
  border: 2px solid #fc3f1d;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  min-width: 160px;
  box-shadow: var(--shadow);
  transition: transform .15s;
}
.yandex-badge:hover { transform: translateY(-2px); }
.yandex-badge__score { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.yandex-badge__stars { color: #fc3f1d; font-size: 1.1rem; letter-spacing: 2px; }
.yandex-badge__count { font-size: .75rem; color: var(--muted); text-align: center; margin-top: .35rem; }
.reviews--yandex {
  grid-template-columns: repeat(3, 1fr);
}
.review-card--yandex blockquote { margin: .5rem 0 0; font-style: normal; }
.review-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}
.review-card__stars { color: #fc3f1d; font-size: .9rem; letter-spacing: 1px; }
.review-card--yandex time { font-size: .75rem; color: var(--muted); display: block; margin-bottom: .25rem; }
.reviews-footer { text-align: center; margin-top: 2rem; }
.section__title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin: 0 0 .5rem;
}
.section__title--light { color: var(--white); }
.section__lead {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.section__lead--light { color: rgba(255,255,255,.75); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.link-gold { color: #9a7b1a; font-weight: 700; text-decoration: none; }
.link-gold:hover { color: var(--red); text-decoration: underline; }
.section--light .link-gold { color: #9a7b1a; }
.section--navy .link-gold { color: var(--gold-light); }
.section--navy .link-gold:hover { color: var(--white); }

/* PSV */
.psv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.psv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.psv-card h3 { margin-top: 0; color: var(--navy); }
.psv-card--problem { border-left: 4px solid var(--red); }
.psv-card--solution { border-left: 4px solid var(--gold); }
.psv-card--benefit { border-left: 4px solid var(--navy); }

/* Calculator */
.calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.calc__form .field { display: block; margin-bottom: 1rem; }
.calc__form span { display: block; font-weight: 600; margin-bottom: .35rem; color: var(--navy); }
.calc__form input[type="range"] { width: 100%; }
.calc__form select {
  width: 100%;
  padding: .65rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-family: inherit;
}
.calc__percent {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0;
}
.calc dl { display: grid; gap: .75rem; }
.calc dt { font-size: .8rem; color: var(--muted); }
.calc dd { margin: 0; font-weight: 700; color: var(--navy); }
.calc__note { font-size: .8rem; color: var(--muted); }
.calc__aside,
.calc__result { grid-column: 2; grid-row: 1; align-self: start; }
.calc-preview {
  background: linear-gradient(145deg, #0f1f3d 0%, #1a3158 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.calc-preview__label {
  margin: 0;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #c9a227;
  font-weight: 700;
}
.calc-preview__title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.3;
}
.calc-preview__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem;
  flex: 1;
}
.calc-preview__list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .95rem;
  line-height: 1.45;
}
.calc-preview__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}
.calc-preview__note {
  margin: 0;
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.contacts__cta-wrap { margin-top: 1.5rem; }
.modal__lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: .95rem;
}

/* Tabs */
.tabs__nav {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.tabs__nav button {
  border: 2px solid rgba(255,255,255,.3);
  background: transparent;
  color: var(--white);
  padding: .6rem 1.2rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}
.tabs__nav button[aria-selected="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.tabs__panel {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255,255,255,.92);
  line-height: 1.65;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  counter-reset: none;
}
.steps li {
  text-align: center;
  position: relative;
}
.steps li span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: .5rem;
  border: 2px solid var(--gold);
}
.steps li::after {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: var(--gold);
  opacity: .5;
}
.steps li:last-child::after { display: none; }
.steps h3 { font-size: .95rem; margin: 0 0 .25rem; color: var(--navy); }
.steps p { font-size: .8rem; color: var(--muted); margin: 0; }

/* Lists */
.check-list {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  list-style: none;
  padding: 0;
}
.check-list li {
  padding: .5rem 0 .5rem 1.75rem;
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}
.notice, .disclaimer {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .9rem;
  color: var(--muted);
}

/* Accordion */
.accordion__item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.accordion__item summary {
  padding: 1rem 1.25rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__item p { padding: 0 1.25rem 1rem; margin: 0; color: var(--muted); }

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  max-width: 420px;
  margin: 0 auto;
}
.pricing:has(.price-card:only-child) {
  grid-template-columns: 1fr;
}
.tabs__solo {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.65;
}
.tabs__solo--only { padding: 0.5rem 0; }
.anchor-target {
  position: relative;
  top: -80px;
  visibility: hidden;
  height: 0;
  display: block;
}
.price-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  position: relative;
  color: rgba(255,255,255,.92);
}
.price-card h3,
.price-card li { color: rgba(255,255,255,.92); }
.price-card--popular {
  background: linear-gradient(180deg, rgba(201,162,39,.35), rgba(15,31,61,.9));
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.price-card__badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  padding: .25rem .6rem;
  border-radius: 4px;
}
.price-card h3 { margin-top: 0; }
.price-card__price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.price-card li {
  padding: .35rem 0 .35rem 1.4rem;
  position: relative;
  font-size: .9rem;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}

/* Lawyer */
.lawyer {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.lawyer__photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--navy);
}
.lawyer__info h2 { color: var(--navy); margin-top: 0; }
.lawyer__status { color: var(--gold); font-weight: 600; }
.lawyer__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.lawyer__stats strong {
  display: block;
  font-size: 1.5rem;
  color: var(--navy);
}
.lawyer__stats span { font-size: .8rem; color: var(--muted); }
.registry-link {
  margin-top: 1.25rem;
  font-size: .95rem;
}
.registry-link a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.registry-link a:hover { color: var(--red); }

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.review-card blockquote { margin: 0 0 1rem; font-style: italic; }
.review-card cite { font-size: .8rem; color: var(--muted); font-style: normal; }
.review-card__doc {
  height: 120px;
  margin-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.review-card__doc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.blog-card__thumb {
  height: 140px;
  border-radius: 8px 8px 0 0;
  margin: -1.25rem -1.25rem 1rem;
  overflow: hidden;
  background: var(--navy);
}
.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  overflow: hidden;
}
.blog-card--large .blog-card__thumb {
  margin: -1.25rem -1.25rem 1rem;
  height: 200px;
}
.blog-card time { font-size: .75rem; color: var(--muted); }
.blog-card h3 { margin: .5rem 0; font-size: 1.05rem; }
.blog-card h3 a { text-decoration: none; color: var(--navy); }
.blog-card h3 a:hover { color: var(--red); }
.blog-grid--page { grid-template-columns: 1fr; max-width: 720px; }
.blog-card--large h2 { margin: .35rem 0; font-size: 1.35rem; }

/* Contacts */
.contacts {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
}
.contacts__map iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
}
.field { display: block; margin-bottom: .85rem; }
.field span { display: block; font-weight: 600; font-size: .85rem; margin-bottom: .3rem; }
.field input, .field textarea {
  width: 100%;
  padding: .65rem .75rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
}
.checkbox {
  display: flex;
  gap: .5rem;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1rem;
  align-items: flex-start;
}
.checkbox a { color: var(--navy); }
.form-msg { font-size: .9rem; }
.form-msg.is-ok { color: #15803d; }
.form-msg.is-err { color: var(--red); }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 3rem 0 0;
}
.site-footer a { color: var(--gold-light); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-lawyer { font-size: .85rem; color: rgba(255,255,255,.7); }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.logo--footer .logo__text strong { font-size: .9rem; }

/* Modal */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,31,61,.7);
}
.modal__box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  width: min(440px, 100%);
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.modal__close {
  position: absolute;
  top: .5rem;
  right: .75rem;
  border: 0;
  background: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--muted);
}
.modal__box h2 { margin-top: 0; color: var(--navy); }

/* Pages */
.page-main { padding: 2rem 0 4rem; background: var(--bg); min-height: 60vh; }
.page-main--blog {
  background: var(--bg) url('../img/blog-section-bg.jpg') center top / cover no-repeat;
}
.breadcrumbs { font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--navy); }
.container--article { max-width: 760px; }
.article-header h1 { color: var(--navy); line-height: 1.2; }
.article-lead { font-size: 1.15rem; color: var(--muted); }
.prose h2 { color: var(--navy); margin-top: 2rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose a { color: var(--red); }
.article-footer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #e2e8f0; }

/* Responsive */
@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .nav, .header-contacts { display: none; }
  .burger { display: block; grid-column: 3; }
}
@media (max-width: 1024px) {
  .burger { display: block; }
  .hero__grid, .lawyer, .contacts, .calc { grid-template-columns: 1fr; }
  .features-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .psv-grid, .pricing, .reviews, .reviews--yandex, .blog-grid { grid-template-columns: 1fr; }
  .yandex-reviews-head { flex-direction: column; }
  .steps { grid-template-columns: 1fr; }
  .steps li::after { display: none; }
  .price-card--popular { transform: none; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .features-bar__grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
}
