/* ===== NAV (solid — always visible on testimonials page) ===== */
nav {
  background: rgba(247, 245, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 9rem 6% 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}
.blob-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79,142,247,0.28), transparent);
  top: -80px; left: -100px;
  animation: blobFloat1 11s ease-in-out infinite;
}
.blob-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(192,132,252,0.25), transparent);
  top: 0; right: -80px;
  animation: blobFloat2 13s ease-in-out infinite;
}
@keyframes blobFloat1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(50px, 40px) scale(1.08); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-40px, 50px) scale(1.05); }
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero .gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--violet), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== STATS ROW ===== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2.5rem 6%;
  background: white;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ===== TESTIMONIALS FEED ===== */
.testimonials-section {
  padding: 5rem 6%;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-item {
  background: white;
  border-radius: 20px;
  padding: 2.8rem;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  position: relative;
  transition: box-shadow 0.25s;
}
.testimonial-item:hover {
  box-shadow: 0 16px 50px rgba(79,142,247,0.1);
}

.testimonial-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--violet), var(--pink));
  border-radius: 20px 0 0 20px;
}

.stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: #374151;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 70px; height: 70px;
}

.service-tag {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(79,142,247,0.09), rgba(155,110,243,0.09));
  border: 1px solid rgba(155,110,243,0.15);
  color: var(--violet);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ===== BOTTOM CTA ===== */
.bottom-cta {
  padding: 5rem 6%;
  background: white;
  text-align: center;
  border-top: 1px solid var(--border);
}

.bottom-cta .cta-card {
  max-width: 620px;
  padding: 3.5rem;
  box-shadow: 0 28px 70px rgba(79,142,247,0.28);
  border-radius: 24px;
}

/* ===== FOOTER (testimonials) ===== */
footer {
  color: rgba(255,255,255,0.45);
  padding: 2rem 6%;
  text-align: center;
  font-size: 0.78rem;
}

.footer-logo img { height: 32px; width: auto; display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .service-tag { display: none; }
  .stats-row { gap: 2rem; }
}
