/* Reviews section */
.reviews-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1854 50%, #430056 100%);
  border-radius: 16px;
  margin: 40px 0;
}
.reviews-section .reviews-title {
  text-align: center;
  color: #f5f5f5;
  font-size: 32px;
  margin-bottom: 40px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.review-card {
  background: linear-gradient(145deg, #241b33 0%, #150f21 100%);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.45), 0 0 0 1px rgba(110,18,176,.35);
  transition: transform .25s ease, box-shadow .25s ease;
  color: #f5f5f5;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(110,18,176,.35), 0 0 0 1px rgba(255,205,56,.4);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6e12b0, #ffcd38);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-name {
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 4px;
  color: #f5f5f5;
}
.review-loc {
  font-size: 13px;
  color: #b8a8d0;
  margin: 0;
}
.review-stars {
  color: #f9d01e;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #d8d0e5;
  margin: 0;
}
@media (max-width: 640px) {
  .reviews-section { padding: 40px 14px; margin: 24px 0; }
  .reviews-section .reviews-title { font-size: 24px; margin-bottom: 24px; }
}

/* Simple content pages */
.simple-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px 24px;
  color: #f5f5f5;
}
.simple-page h1 { font-size: 32px; margin-bottom: 20px; }
.simple-page h2 { font-size: 22px; margin: 28px 0 12px; color: #ffcd38; }
.simple-page p, .simple-page li { line-height: 1.7; margin-bottom: 12px; font-size: 15px; }
.simple-page ul, .simple-page ol { padding-left: 22px; margin-bottom: 16px; }
.simple-page a { color: #ffcd38; }

/* Footer legal block */
.footer-legal {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 20px;
}
.footer-legal a {
  color: #f5f5f5;
  margin: 0 10px;
  font-size: 13px;
  text-decoration: none;
  opacity: .85;
}
.footer-legal a:hover { opacity: 1; color: #ffcd38; }

/* Header CTA */
.header .btn.cta-main {
  background: #ffcd38;
  color: #000 !important;
  border: 1px solid #ffcd38;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
}
.nav-simple {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-simple a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 15px;
}
.nav-simple a:hover { color: #ffcd38; }
