/* ============================================================
   help-center.css — Help Center hub (help-center.html)
   Load after slp-critical.css + slp-deferred.css + guides.css
   ============================================================ */

.guides-section {
  padding: 56px 0 64px;
  background: #ffffff;
}

.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 8px;
}

.guide-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 6px 24px rgba(74, 0, 114, 0.09);
  border-top: 4px solid #ffd54f;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(74, 0, 114, 0.16);
}

.guide-card-icon {
  font-size: 36px;
  line-height: 1;
}

.guide-card h3 {
  color: #4a0072;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
}

.guide-card p {
  color: #555555;
  font-size: 14px;
  line-height: 1.7;
  flex-grow: 1;
  margin: 0;
}

.guide-card-cta {
  color: #4a0072;
  font-weight: 700;
  font-size: 13px;
  margin-top: 4px;
}

.quick-links-band {
  margin-top: 40px;
  padding: 24px 28px;
  background: #f8f4fc;
  border: 1px solid rgba(74, 0, 114, 0.1);
  border-radius: 16px;
  text-align: center;
}

.quick-links-band p {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a0072;
  margin-bottom: 14px;
}

.quick-links-band .links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
}

.quick-links-band a {
  color: #6a0099;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.quick-links-band a:hover {
  text-decoration: underline;
}

.trust-section {
  padding: 56px 0;
  background: #f9f9f9;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.trust-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 6px 22px rgba(74, 0, 114, 0.06);
  text-align: center;
}

.trust-card .ico {
  font-size: 32px;
  margin-bottom: 12px;
}

.trust-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #4a0072;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555555;
}

.transit-section {
  padding: 56px 0;
  background: #ffffff;
}

.reviews-band {
  padding: 56px 0;
  background: #f4f7f6;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.review-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 6px 20px rgba(74, 0, 114, 0.06);
}

.review-card .stars {
  color: #ffd54f;
  font-size: 14px;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 12px;
}

.review-card .author {
  font-size: 13px;
  font-weight: 700;
  color: #4a0072;
}

@media (max-width: 900px) {
  .trust-grid,
  .review-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .guide-hero {
    padding: 48px 0;
  }

  .guides-section,
  .trust-section,
  .transit-section,
  .reviews-band,
  .faq-section {
    padding: 36px 0;
  }

  .cta-bar .cta-btn,
  .mid-cta .cta-bar .cta-btn {
    width: 100%;
  }
}
