/* ================================
   Performance Marketing Page Styles
================================ */

/* Stats Section */
.stats-dark {
  background: var(--dark);
  color: white;
  padding: 60px 20px;
  text-align: center;
}
.stats-dark .stats-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.stats-dark h3 {
  font-size: 2.5rem;
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 10px;
}

/* Intro Section */
.section-intro {
  padding: 80px 20px;
  max-width: 900px;        /* narrower for better readability */
  margin: auto;
  text-align: left;        /* left-align paragraphs */
}
.section-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark);
  text-align: center;      /* keep main heading centered */
  font-weight: 800;
}
.section-intro h3 {
  font-size: 1.8rem;
  margin: 40px 0 15px;
  color: var(--dark);
  font-weight: 700;
}
.section-intro p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #334155;
  line-height: 1.8;
  text-align: center;
}

/* Services */
.services-section {
  padding: 80px 20px;
  background: var(--light);
  text-align: center;
}
.services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark);
}
.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.service-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.service-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

/* Process */
.process-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.process-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.process-step {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 800;
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  max-width: 900px;        /* limit width for readability */
  margin: auto;
}
.faq-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--dark);
  font-weight: 800;
}
.faq-section h3 {
  font-size: 1.25rem;
  margin: 25px 0 10px;
  color: var(--dark);
  font-weight: 700;
}
.faq-section p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}
