/* ===============================
   PLATFORM1 – STARTUP PAGE
   Content CSS Only
   (No Navbar / Footer)
================================ */

/* ---------- Design Tokens ---------- */
:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --secondary: #0f172a;

  --text-main: #0f172a;
  --text-muted: #475569;

  --bg-light: #f8fafc;
  --bg-soft: #f1f5f9;

  --border-light: #e2e8f0;

  --radius: 16px;
}

/* ---------- Base ---------- */
body {
  font-family: "Poppins", sans-serif;
  color: var(--text-main);
  background: #ffffff;
  line-height: 1.7;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* ===============================
   HERO
================================ */
.hero {
  padding: 6rem 0 5rem;
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #ffffff 100%
  );
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto 2.2rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ---------- Hero Buttons ---------- */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  background: #0f766e;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, border 0.2s ease;
}

.btn-secondary:hover {
  background: var(--bg-light);
  border-color: var(--primary);
}

/* ===============================
   SECTIONS
================================ */
.section {
  padding: 5rem 0;
}

.section.light {
  background: var(--bg-light);
}

.section h2 {
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.section p {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===============================
   BENEFITS LIST
================================ */
.benefits {
  margin-top: 2rem;
  list-style: none;
  max-width: 720px;
  padding: 0;
}

.benefits li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.9rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

.benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0f766e;
  font-weight: 600;
}

/* ===============================
   GRID – HOW IT HELPS
================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: #ffffff;
  padding: 2.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
} */

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===============================
   STEPS – HOW IT WORKS
================================ */
.steps {
  margin-top: 2.5rem;
  counter-reset: step;
  max-width: 760px;
  padding: 0;
}

.steps li {
  list-style: none;
  position: relative;
  padding-left: 3.2rem;
  margin-bottom: 2rem;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #0f766e;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps strong {
  display: block;
  margin-bottom: 0.3rem;
}

/* ===============================
   CTA
================================ */
.cta {
  padding: 5.5rem 0;
  background: #0f766e;
  text-align: center;
  color: #ffffff;
}

.cta h2 {
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 2.2rem;
  font-size: 0.95rem;
  color:#e6e6e6;
}

.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 h1 {
    font-size: 2.2rem;
  }

  .section h2 {
    font-size: 1.8rem;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}
