/* ===========================
   General Section Styles
=========================== */
section {
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

section h2 {
  font-size: 2.5rem;
  color: #ff4ecb;
  margin-bottom: 20px;
  font-weight: 700;
}

section p {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #d6d6d6;
  line-height: 1.6;
}

/* ===========================
   SEO Benefits Section
=========================== */
.seo-benefits {
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: #151515;
  border: 1px solid #7a2c92;
  border-radius: 15px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card i {
  font-size: 2rem;
  color: #ff4ecb;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 1.4rem;
  color: #ff66c4;
  margin-bottom: 10px;
}

.benefit-card p {
  color: #bbb;
  font-size: 1rem;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 78, 203, 0.4);
}

/* ===========================
   Use Cases Section
=========================== */
.section-dark {
  background: linear-gradient(135deg, #1e0033, #0d0d0d);
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card-dark {
  background: #151515;
  border: 1px solid #7a2c92;
  border-radius: 15px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-dark i {
  font-size: 2rem;
  color: #ff4ecb;
  margin-bottom: 15px;
}

.card-dark h3 {
  font-size: 1.4rem;
  color: #ff66c4;
  margin-bottom: 10px;
}

.card-dark p {
  color: #bbb;
  font-size: 1rem;
}

.card-dark:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 78, 203, 0.4);
}

/* ===========================
   CTA Section
=========================== */
.cta-section {
  background: linear-gradient(135deg, #33004d, #0d0d0d);
}

.cta-section h2 {
  font-size: 2.3rem;
  color: #ff4ecb;
}

.cta-section p {
  color: #d6d6d6;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* CTA Button */
.btn.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ff4ecb, #ff66c4);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 78, 203, 0.5);
}

.btn.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 78, 203, 0.8);
}
