.results {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  border-radius: 20px;
  margin-top: 60px;
  font-family: 'Poppins', sans-serif;
}

.results::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at center, rgba(255, 87, 34, 0.08), transparent 70%);
  z-index: 0;
  animation: floatPulse 10s ease-in-out infinite;
}

@keyframes floatPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.results h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #ff5722, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  z-index: 2;
  position: relative;
}

.results p {
  font-size: 1.4rem;
  margin: 1.5rem auto;
  max-width: 900px;
  color: #333;
  font-style: italic;
  position: relative;
  padding-left: 2rem;
  line-height: 1.75;
  z-index: 2;
}

.results p::before {
  content: "“";
  font-size: 3rem;
  color: #ff5722;
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-family: Georgia, serif;
  font-weight: bold;
  animation: quoteGlow 2s ease-in-out infinite alternate;
}

@keyframes quoteGlow {
  from { text-shadow: 0 0 6px #ff5722; }
  to { text-shadow: 0 0 12px #ff5722; }
}

/* Responsive */
@media (max-width: 768px) {
  .results h2 {
    font-size: 2rem;
  }

  .results p {
    font-size: 1.05rem;
    padding-left: 1.2rem;
  }

  .results p::before {
    font-size: 2.2rem;
    top: -0.3rem;
  }
}
