/* ================= RESET & BASE ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ================= HERO ================= */
.hero-small {
  background: linear-gradient(to bottom, #f0fdfa, #fff);
  padding: 80px 20px;
  text-align: center;
}

.hero-small h1 {
  font-size: 40px;
  font-weight: 700;
  color: #0f766e; /* green accent */
  margin-bottom: 20px;
}

.hero-small .hero-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: auto;
}

/* ================= INTRO ================= */
.section-intro {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
  
}

.section-intro p {
    
  font-size: 16px;
  color: #555;
  margin-bottom: 16px;
}

/* ================= STEPS SECTIONS ================= */
.section-steps {
  padding: 80px 20px;
  background: #f9fafb;
}

.section-steps h2 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 50px;
  color: #0f766e;
}

.steps-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.steps-cards .step-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.steps-cards .step-card:hover {
  transform: translateY(-4px);
}

.steps-cards .step-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 12px;
  color: #0f766e;
}

/* ================= BENEFITS / WHAT PLATFORM IS NOT ================= */
.section-benefits {
  padding: 80px 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-benefits h2 {
  color: #0f766e;
  font-weight: 600;
  margin-bottom: 40px;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.benefits li {
  position: relative;
  padding-left: 28px;
  min-width: 240px;
  background: #f0fdf4;
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 16px 16px 16px 28px;
  text-align: left;
  color: #333;
}

.benefits li::before {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
}

.benefits li.positive::before {
  content: '✔';
  color: #0f766e;
}

.benefits li.negative::before {
  content: '✖';
  color: #e02424;
}

/* ================= CTA ================= */
.cta {
  background: #0f766e;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  font-size: 16px;
  margin-bottom: 24px;
}

.cta .btn-primary {
  background: #fff;
  color: #0f766e;
  padding: 16px 36px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta .btn-primary:hover {
  background: #e0f4f2;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .steps-cards {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .hero-small h1 {
    font-size: 28px;
  }

  .section-steps h2,
  .section-benefits h2 {
    font-size: 24px;
  }

  .steps-cards .step-card {
    width: 100%;
  }
}
