/* Поддержка сайтов — page-specific clean styles (Motor structure) */

/* Breadcrumbs (needed: seo-clean/lido styles not loaded on this page) */
.support-page .rk-breadcrumbs {
  width: min(100% - var(--rk-gutter) * 2, var(--rk-container));
  margin: 12px auto 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #6b6b6b;
}
.support-page .rk-breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.support-page .rk-breadcrumbs li {
  display: inline-flex;
  align-items: center;
}
.support-page .rk-breadcrumbs li:not(:last-child)::after {
  content: "→";
  margin: 0 8px;
  color: #b0b0b0;
}
.support-page .rk-breadcrumbs a {
  color: #5a5a5a;
  text-decoration: none;
}
.support-page .rk-breadcrumbs a:hover,
.support-page .rk-breadcrumbs a:focus-visible {
  color: #9867f3;
  outline: none;
}
.support-page .rk-breadcrumbs [aria-current="page"] {
  color: #3a3a3a;
  font-weight: 600;
}

/* Cities grid (rk-cities styles live in lido/aeo CSS — replicate here) */
.support-page .rk-cities {
  margin: 0;
  padding: 56px 0 64px;
  background: #f7f8fb;
}
.support-page .rk-cities__title {
  margin: 0 0 12px;
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: #1f2430;
}
.support-page .rk-cities__lead {
  margin: 0 auto 28px;
  max-width: 70ch;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
}
.support-page .rk-cities__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.support-page .rk-cities__card {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  background: #293244;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(27, 35, 55, .12);
  isolation: isolate;
}
.support-page .rk-cities__card:hover,
.support-page .rk-cities__card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(27, 35, 55, .2);
  color: #fff;
  outline: none;
}
.support-page .rk-cities__card:focus-visible {
  outline: 3px solid #9867f3;
  outline-offset: 3px;
}
.support-page .rk-cities__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ebe4ff;
}
.support-page .rk-cities__label {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
.support-page .rk-cities__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 20, 31, .02) 25%, rgba(15, 20, 31, .78) 100%);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .support-page .rk-cities__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .support-page .rk-cities {
    padding: 48px 0 56px;
  }
  .support-page .rk-cities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .support-page .rk-cities__label {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 14px;
  }
  .support-page .rk-breadcrumbs {
    font-size: 12px;
  }
}

.support-page .support-hero {
  padding: 20px 0 48px;
  background:
    radial-gradient(circle at 85% 20%, rgba(127, 63, 242, 0.10), transparent 42%),
    linear-gradient(180deg, #f7f5ff 0%, #fff 70%);
}
.support-page .support-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px 48px;
  align-items: center;
}
.support-page .support-eyebrow {
  margin: 0 0 14px;
  color: #5b21b6;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}
.support-page .support-hero__title {
  margin: 0 0 18px;
  color: #1f2430;
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.support-page .support-hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.support-page .support-hero__lead {
  margin: 0 0 24px;
  max-width: 36em;
  color: #4b5568;
  font-size: 17px;
  line-height: 1.55;
}
.support-page .support-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.support-page .support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.support-page .support-btn--primary {
  color: #fff;
  background: linear-gradient(90deg, #a855f7, #3b82f6);
  box-shadow: 0 10px 24px rgba(99, 102, 241, .28);
}
.support-page .support-btn--ghost {
  color: #2563eb;
  background: #fff;
  border-color: #c7d7f5;
}
.support-page .support-btn:hover {
  transform: translateY(-1px);
}
.support-page .support-btn:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 2px;
}
.support-page .support-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 18px;
}
.support-page .support-trust__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #374151;
  font-size: 14px;
  line-height: 1.35;
}
.support-page .support-trust__item img {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.support-page .support-trust__item strong {
  display: block;
  color: #1f2430;
  font-weight: 700;
}
.support-page .support-hero__visual {
  margin: 0;
}
.support-page .support-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.support-page .support-section {
  padding: 64px 0;
}
.support-page .support-section--muted {
  background: #f7f8fb;
}
.support-page .support-h2 {
  margin: 0 0 28px;
  color: #1f2430;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
}
.support-page .support-lead {
  margin: -10px auto 32px;
  max-width: 40em;
  color: #596174;
  font-size: 17px;
  line-height: 1.55;
  text-align: center;
}

.support-page .support-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.support-page .support-svc {
  padding: 22px 18px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8ecf4;
  box-shadow: 0 8px 24px rgba(27, 35, 55, .06);
  text-align: center;
}
.support-page .support-svc img {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 14px;
  object-fit: contain;
}
.support-page .support-svc h3 {
  margin: 0 0 10px;
  color: #1f2430;
  font-size: 18px;
  font-weight: 700;
}
.support-page .support-svc p {
  margin: 0;
  color: #596174;
  font-size: 14px;
  line-height: 1.5;
}

.support-page .support-why {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px 40px;
  align-items: start;
}
.support-page .support-why__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.support-page .support-why__list li {
  position: relative;
  margin: 0 0 12px;
  padding: 0 0 0 28px;
  color: #374151;
  font-size: 16px;
  line-height: 1.45;
}
.support-page .support-why__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
}
.support-page .support-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.support-page .support-stat {
  padding: 16px 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8ecf4;
  text-align: center;
}
.support-page .support-stat__value {
  display: block;
  margin-bottom: 6px;
  color: #7c3aed;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.1;
}
.support-page .support-stat__label {
  display: block;
  color: #596174;
  font-size: 13px;
  line-height: 1.35;
}

.support-page .support-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.support-page .support-plan {
  display: flex;
  flex-direction: column;
  padding: 24px 20px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e5e9f2;
  box-shadow: 0 10px 28px rgba(27, 35, 55, .07);
}
.support-page .support-plan--featured {
  border-color: #c4b5fd;
  box-shadow: 0 14px 36px rgba(124, 58, 237, .16);
}
.support-page .support-plan img {
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 auto 12px;
  object-fit: contain;
}
.support-page .support-plan__name {
  margin: 0 0 6px;
  color: #1f2430;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
.support-page .support-plan__desc {
  margin: 0 0 16px;
  color: #596174;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}
.support-page .support-plan__list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
}
.support-page .support-plan__list li {
  position: relative;
  margin: 0 0 8px;
  padding: 0 0 0 22px;
  color: #374151;
  font-size: 14px;
  line-height: 1.4;
}
.support-page .support-plan__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #8b5cf6;
  font-weight: 700;
}
.support-page .support-plan__price {
  margin: 0 0 14px;
  color: #1f2430;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
.support-page .support-plan__price span {
  color: #6b7280;
  font-size: 15px;
  font-weight: 500;
}
.support-page .support-plan .support-btn {
  width: 100%;
}
.support-page .support-plan-custom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 18px 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e5e9f2;
  box-shadow: 0 8px 24px rgba(27, 35, 55, .06);
}
.support-page .support-plan-custom img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.support-page .support-plan-custom p {
  margin: 0;
  color: #374151;
  font-size: 16px;
  line-height: 1.45;
}
.support-page .support-plan-custom strong {
  color: #1f2430;
}

.support-page .support-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.support-page .support-step {
  padding: 18px 14px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8ecf4;
  text-align: center;
}
.support-page .support-step__num {
  display: block;
  margin-bottom: 8px;
  color: #6d28d9;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}
.support-page .support-step img {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  object-fit: contain;
}
.support-page .support-step h3 {
  margin: 0 0 8px;
  color: #1f2430;
  font-size: 17px;
  font-weight: 700;
}
.support-page .support-step p {
  margin: 0;
  color: #596174;
  font-size: 14px;
  line-height: 1.45;
}

.support-page .support-guarantees-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px 40px;
  align-items: start;
}
.support-page .support-guarantees {
  display: grid;
  gap: 14px;
}
.support-page .support-guarantees__visual {
  margin: 0 0 8px;
}
.support-page .support-guarantees__visual img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 16px;
}
.support-page .support-guarantee {
  padding: 16px 16px 16px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8ecf4;
}
.support-page .support-guarantee h3 {
  margin: 0 0 6px;
  color: #1f2430;
  font-size: 17px;
  font-weight: 700;
}
.support-page .support-guarantee p {
  margin: 0;
  color: #596174;
  font-size: 14px;
  line-height: 1.45;
}
.support-page .support-faq details {
  margin: 0 0 10px;
  border: 1px solid #e5e9f2;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.support-page .support-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 46px 16px 16px;
  position: relative;
  color: #1f2430;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
}
.support-page .support-faq summary::-webkit-details-marker { display: none; }
.support-page .support-faq summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #7c3aed;
  font-size: 22px;
  font-weight: 500;
}
.support-page .support-faq details[open] summary::after { content: "−"; }
.support-page .support-faq details p {
  margin: 0;
  padding: 0 16px 16px;
  color: #596174;
  font-size: 14px;
  line-height: 1.55;
}
.support-page .support-faq__more {
  display: inline-flex;
  margin-top: 8px;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}
.support-page .support-faq__more:hover { text-decoration: underline; }

.support-page .support-reviews__head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.support-page .support-reviews__head .support-h2 {
  margin: 0;
  text-align: left;
}
.support-page .support-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.support-page .support-review {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8ecf4;
}
.support-page .support-review img {
  display: block;
  width: 100%;
  height: auto;
}

.support-page .support-cities-note {
  margin: 0 0 18px;
  color: #596174;
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}

.support-page .support-cta-band {
  padding: 56px 0;
  background: linear-gradient(90deg, #a855f7, #3b82f6);
  color: #fff;
  text-align: center;
}
.support-page .support-cta-band h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}
.support-page .support-cta-band p {
  margin: 0 auto 22px;
  max-width: 36em;
  color: rgba(255, 255, 255, .92);
  font-size: 16px;
  line-height: 1.5;
}
.support-page .support-cta-band .support-btn--light {
  color: #5b21b6;
  background: #fff;
  border-color: #fff;
}
.support-page .support-cta-band .support-btn--light:hover {
  background: #f5f3ff;
}

@media (max-width: 1100px) {
  .support-page .support-svc-grid,
  .support-page .support-steps,
  .support-page .support-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .support-page .support-plans {
    grid-template-columns: 1fr;
  }
  .support-page .support-why,
  .support-page .support-guarantees-faq,
  .support-page .support-hero__grid {
    grid-template-columns: 1fr;
  }
  .support-page .support-plan-custom {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .support-page .support-plan-custom img { margin: 0 auto; }
}

@media (max-width: 700px) {
  .support-page .support-section { padding: 48px 0; }
  .support-page .support-trust,
  .support-page .support-svc-grid,
  .support-page .support-steps,
  .support-page .support-reviews-grid,
  .support-page .support-stats {
    grid-template-columns: 1fr;
  }
  .support-page .support-hero__actions { flex-direction: column; align-items: stretch; }
  .support-page .support-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .support-page .support-btn { transition: none; }
}
