/* ===============================
   GLOBAL PAGE BASE
================================ */
body {
  font-family: 'Poppins', sans-serif;
  color: #1f2933;
  background-color: #ffffff;
  line-height: 1.7;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===============================
   HERO (SMALL)
================================ */
.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-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: auto;
}

/* ===============================
   SECTIONS (BASE)
================================ */
.section {
  padding: 80px 0;
}

.section.light {
  background-color: #f8fafc;
}

.section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.section p {
  max-width: 1140px;
  color: #334155;
  font-size: 15px;
  margin-bottom: 14px;}

/* ===============================
   WHAT IS PLATFORM1
================================ */
.section:first-of-type p strong {
  color: #0f172a;
}

/* ===============================
   WHY PLATFORM1 EXISTS
================================ */
.section.light p {
  max-width: 980px;
}

/* ===============================
   WHO PLATFORM1 IS FOR
================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 30px;
  transition: all 0.25s ease;
}

.card:hover {
  /* transform: translateY(-4px); */
  box-shadow: 0 2px 3px rgba(0,0,0,0.01);
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: #475569;
  margin: 0;
}

/* ===============================
   WHAT PLATFORM1 IS NOT
================================ */
.benefits {
  margin-top: 30px;
  padding-left: 0;
  list-style: none;
  max-width: 700px;
}

.benefits li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #334155;
}

.benefits li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #64748b;
}

/* ===============================
   PART OF XYZ
================================ */
.section:last-of-type p {
  max-width: 760px;
}
/* ================= CTA ================= */
.cta {
  background: #0f766e;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.cta p {
  color: #e6e6e6;
  margin-bottom: 26px;
}
.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: 768px) {
  .hero-small h1 {
    font-size: 2.1rem;
  }

  .section {
    padding: 60px 0;
  }

  .cta h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .hero-small {
    padding: 70px 0 55px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .section h2 {
    font-size: 1.7rem;
  }
}
