/* ================================================================ */
/*       SEO-СТРАНИЦЫ — СТИЛЬ 1-В-1 КАК В max.html                  */
/* ================================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff;
  min-height: 100vh;
  padding: 30px 20px;
  line-height: 1.6;
}

.wrap { max-width: 720px; margin: 0 auto; }

/* ===== Логотип ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.logo img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
}

/* ===== Хлебные крошки ===== */
.breadcrumbs {
  font-size: 13.5px;
  opacity: .85;
  margin-bottom: 28px;
}
.breadcrumbs a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.5);
}
.breadcrumbs a:hover { border-bottom-style: solid; }
.breadcrumbs span { margin: 0 6px; opacity: .7; }

/* ===== Заголовки ===== */
h1 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 700;
  color: #fff;
}
.lead {
  font-size: 18px;
  opacity: .9;
  margin-bottom: 30px;
}

/* ===== CTA ===== */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #4f46e5;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  transition: transform .15s;
  margin-bottom: 8px;
}
.cta:hover { transform: translateY(-2px); }

/* ===== Секции (карточки как в max.html) ===== */
.section, .steps, .faq, .about {
  background: rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 24px;
  margin-top: 30px;
}
.section h2, .steps h2, .faq h2, .about h2 {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 700;
  color: #fff;
}
.section h3, .steps h3, .about h3 {
  font-size: 17px;
  margin: 12px 0 8px;
  font-weight: 700;
  color: #fff;
}
.section p, .about p {
  font-size: 15.5px;
  margin-bottom: 12px;
  opacity: .95;
}
.section p:last-child, .about p:last-child { margin-bottom: 0; }

.section ol, .steps ol,
.section ul, .steps ul {
  padding-left: 22px;
}
.section ol li, .steps ol li,
.section ul li, .steps ul li {
  margin-bottom: 8px;
  font-size: 15.5px;
}

.section a, .about a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.5);
}
.section a:hover, .about a:hover { text-decoration-color: #fff; }

/* ===== FAQ ===== */
.faq-item { margin-bottom: 16px; }
.faq-item:last-child { margin-bottom: 0; }
.faq-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 700;
  color: #fff;
}
.faq-item p {
  font-size: 15px;
  opacity: .9;
  margin: 0;
}

/* ===== Кнопка "Назад" ===== */
.back {
  display: inline-block;
  margin-top: 30px;
  color: #fff;
  opacity: .8;
  text-decoration: none;
  font-size: 15px;
}
.back:hover { opacity: 1; }

/* ===== Сетка городов (для каталога) ===== */
.catalog-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.catalog-grid li { margin: 0; }
.catalog-grid a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 12px 16px;
  background: rgba(255,255,255,.12);
  border-radius: 12px;
  font-size: 15px;
  transition: background .15s;
}
.catalog-grid a:hover { background: rgba(255,255,255,.22); }

/* ===== 404 ===== */
.not-found { text-align: center; padding-top: 60px; }
.not-found h1 { font-size: 72px; opacity: .9; }
.not-found p { font-size: 18px; opacity: .85; margin-top: 12px; }

/* ===== Мобильные ===== */
@media (max-width: 560px) {
  body { padding: 20px 16px; }
  h1 { font-size: 26px; }
  .lead { font-size: 16px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .section, .steps, .faq, .about { padding: 20px; }
}