* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Sora', sans-serif;
  background: #ffffff;
  color: #111827;
  line-height: 1.6;
}

/* ── NAVBAR ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  background: white;
  z-index: 100;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: #006B5A;
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { text-decoration: none; color: #374151; font-size: 0.9rem; }
.nav-links a:hover { color: #006B5A; }

/* ── BUTTONS ── */
.btn-primary {
  background: #00c9a7;
  color: #0D2137;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-large { padding: 14px 32px; font-size: 1rem; }
.btn-outline {
  border: 2px solid #00c9a7;
  color: #006B5A;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline:hover { background: #00c9a7; color: #0D2137; }

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 100px 40px;
  background: linear-gradient(135deg, #0D2137 0%, #0a3d2e 100%);
  color: white;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 80px 40px;
  text-align: center;
  background: #f9fafb;
}
.how h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0D2137;
  margin-bottom: 48px;
}
.steps {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  padding: 32px 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}
.step-num {
  width: 44px;
  height: 44px;
  background: #00c9a7;
  color: #0D2137;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: #0D2137; }
.step p { font-size: 0.88rem; color: #6b7280; }

/* ── PRICING ── */
.pricing {
  padding: 80px 40px;
  text-align: center;
}
.pricing h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0D2137;
  margin-bottom: 10px;
}
.pricing-sub { color: #6b7280; margin-bottom: 48px; }
.plans {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.plan {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  padding: 32px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  text-align: left;
  position: relative;
}
.plan-featured {
  border-color: #00c9a7;
  border-width: 2px;
  background: #f0fdf9;
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #00c9a7;
  color: #0D2137;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-size: 1rem; font-weight: 700; color: #0D2137; margin-bottom: 8px; }
.plan-price { font-size: 2.2rem; font-weight: 800; color: #006B5A; }
.plan-period { font-size: 0.78rem; color: #6b7280; margin-bottom: 20px; }
.plan ul { list-style: none; margin-bottom: 24px; }
.plan ul li {
  font-size: 0.85rem;
  color: #374151;
  padding: 5px 0;
  border-bottom: 1px solid #f3f4f6;
}
.plan ul li::before { content: '✓  '; color: #00c9a7; font-weight: 700; }

/* ── FOOTER ── */
.footer {
  background: #0D2137;
  color: rgba(255,255,255,0.6);
  padding: 40px;
  text-align: center;
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: #00c9a7;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-links a:hover { color: #00c9a7; }
.footer-copy { font-size: 0.78rem; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .hero h1 { font-size: 1.8rem; }
  .navbar { padding: 14px 20px; }
  .hero { padding: 60px 20px; }
  .how, .pricing { padding: 60px 20px; }
}