/* ================================
   Shopify Development Page Styles
================================ */

/* Stats Section (Dark Background) */
.section-dark {
  background: var(--dark);
  color: white;
  padding: 60px 20px;
  text-align: center;
}
.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 10px;
}
.stat-item p {
  font-size: 1rem;
  color: #e5e7eb;
}

/* Services Section (Light Background) */
.section-light {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}
.section-light h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.section-light p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #475569;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}
.service-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: left;
}
.service-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

/* Process Section (White Background) */
.section-white {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}
.section-white h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
.process-step {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 15px;
}
.process-grid h3 {
  margin-bottom: 10px;
  color: var(--dark);
}
.process-grid p {
  font-size: 0.95rem;
  color: #475569;
}

/* CTA Section */
