/* ── СБРОС ГЛОБАЛЬНОГО text-align:center для заголовков ── */
.rc-hero h1,
.rc-seo-section h2,
.rc-faq-section h2 {
  text-align: left;
}


/* ── HERO ── */
.rc-hero {
  background: var(--white);
  padding: 0 0 48px;
  border-bottom: 1px solid var(--border);
}

.rc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-top: 8px;
}

.rc-hero-h1 {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: 36px;
  font-weight: 550;
  line-height: 1.3;
  letter-spacing: .18px;
  color: var(--text-muted);
  margin: 28px 0 20px;
  text-align: left;
}

.rc-hero-right {
  padding-top: 70px;
}

.rc-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.rc-hero-checks {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 6px 20px;
}
.rc-hero-checks li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.rc-hero-checks li::before {
  content: "✓";
  color: var(--btn-green);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.rc-trust-card {
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rc-trust-card p {
  font-size: 14px;
  color: #888;
  margin: 0;
  line-height: 1.5;
}
.rc-trust-card strong {
  color: var(--text-muted);
  font-weight: 600;
}


/* ── SHARED HELPERS ── */
.rc-section-title {
  font-size: 28px;
  font-weight: 550;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 6px;
  letter-spacing: .5px;
  line-height: 1.3;
}
.rc-section-sub {
  font-size: 16px;
  color: #444;
  margin: 0 0 32px;
  text-align: center;
}


/* ── HOW IT WORKS ── */
.rc-how-section {
  background: var(--white);
  padding: 56px 0 52px;
}

.rc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.rc-step {
  background: linear-gradient(160deg, #fbfbfb, #f5fbfe);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 22px 24px;
  border-left: 4px solid var(--light-blue);
}

.rc-step-num {
  font-size: 40px;
  font-weight: 800;
  color: #c8dcf5;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.rc-step h3 {
  font-size: 26px;
  font-weight: 520;
  text-align: left !important;
  padding-bottom: 15px;
  margin: 0 !important;
  letter-spacing: 1px !important;
  line-height: 35px !important;
  color: var(--text-muted);
}
.rc-step p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}


/* ── CHECKS SECTION ── */
.rc-checks-section {
  background: var(--white);
  padding: 56px 0 52px;
}

.rc-steps-green { margin-top: 32px; }

.rc-step-green {
  border-left-color: var(--btn-green);
}
.rc-step-green img {
  filter: invert(59%) sepia(72%) saturate(480%) hue-rotate(95deg) brightness(95%) contrast(95%);
  margin-bottom: 14px;
}
.rc-step-green h3 { padding-bottom: 10px; }

.rc-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rc-check-list li {
  font-size: 14px;
  color: #555;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.rc-check-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--btn-green);
  font-size: 12px;
  top: 1px;
}


/* ── SEO TEXT ── */
.rc-seo-section {
  background: var(--gray);
  padding: 56px 0 52px;
}
.rc-seo-section .container { max-width: 760px; }
.rc-seo-section h2.rc-section-title {
  padding-bottom: 20px;
  text-align: center;
}
.rc-seo-section p {
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 18px;
  color: var(--text-muted);
  text-align: left;
}
.rc-seo-section a { color: var(--light-blue); text-decoration: underline; }


/* ── FAQ ── */
.rc-faq-section {
  background: var(--white);
  padding: 56px 0 52px;
}
.rc-faq-section .faq-item.active .faq-answer { max-height: 300px; }


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .rc-hero-inner         { grid-template-columns: 1fr; gap: 0; }
  .rc-hero-left          { display: contents; }
  .rc-hero-right         { display: contents; padding-top: 0; }
  .rc-hero-h1            { font-size: 28px; line-height: 1.35; order: 1; }
  .rc-hero-right .rc-lead        { order: 2; }
  .rc-hero-right .rc-trust-card  { order: 5; }
  .rc-hero-widget-wrap   { order: 3; }
  .rc-hero-checks        { order: 4; flex-direction: column; gap: 8px; margin-top: 14px; }
  .rc-lead               { font-size: 16px; }
  .rc-steps              { grid-template-columns: 1fr; }
  .rc-section-title      { font-size: 22px; }
}

@media (max-width: 640px) {
  .rc-hero-checks {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
    margin-bottom: 24px;
  }
}