/* ================= ROOT VARIABLES ================= */
:root {
  --green: #1fa66a;
  --dark: #0f172a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg-light: #f8fafc;
  --bg-dark: #0b1220;
  --white: #ffffff;
}

/* ================= RESET ================= */
* {
  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 {
  display: block;
  max-width: 100%;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= HERO ================= */
.hero {
  padding: 90px 0 80px;
  text-align: center;
  background: linear-gradient(to bottom, #f9fafb, #fff);
}

.hero h1 {
  font-size: 40px;
  font-weight: 600;
  max-width: 1400px;
  margin: 0 auto 18px;
}

.hero-subtitle {
  max-width: 900px;
  margin: 0 auto 36px;
  color: var(--muted);
}

.hero-subtitle strong {
  color: var(--green);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 500;
  margin: 8px;
  display: inline-block;
}

.btn-primary {
  background: #0f766e;
  color: #fff;
}

.btn-secondary {
  border: 1px solid #ccc;
}
/* ================= SECTIONS ================= */
.section {
  padding: 80px 0;
}

.section.light {
  background: var(--bg-light);
}

.section h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 18px;
}

.section p {
  max-width: 1140px;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 14px;
}

/* ================= WHO IS IT FOR ================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card {
  padding: 0;
  background: transparent;
}

.card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: var(--muted);
}

/* ================= HOW IT WORKS ================= */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.steps li {
  font-size: 14px;
  color: var(--muted);
}

.steps strong {
  display: block;
  color: var(--green);
  margin-bottom: 6px;
}

/* ================= BENEFITS ================= */
.benefits {
  margin-top: 20px;
}

.benefits li {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--muted);
}
/* ================= WHY PLATFORM1 ================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  /* background: #fff; */
  padding: 28px;
  border-radius: 14px;
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.05); */
}
/* ================= 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: 10px;
}
.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;
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 30px;
  }

  .section h2 {
    font-size: 26px;
  }
}
