* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  width: 100%;
  background: #ffffff;
}

/* NAV */
.landing-nav {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 500;
  color: #111;
}
.nav-logo b { font-weight: 800; color: #16a34a; }

.nav-login-btn {
  border: 1.5px solid #16a34a;
  color: #16a34a;
  background: transparent;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

/* SHARED CONTAINER */
.landing {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.hero { padding-top: 8px; padding-bottom: 44px; }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #16a34a;
  margin-bottom: 18px;
}

.headline {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  color: #0d1b12;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.sub {
  font-size: 15px;
  line-height: 1.65;
  color: #6b7280;
  margin-bottom: 32px;
}

.cta-box {
  border: 1.5px solid #cdeedb;
  background: #f4fdf7;
  border-radius: 22px;
  padding: 24px 20px;
  text-align: center;
}

.btn-primary {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}
.btn-primary:active { opacity: 0.9; }

.btn-outline {
  width: 100%;
  padding: 16px;
  border: 1.5px solid #16a34a;
  border-radius: 14px;
  background: transparent;
  color: #16a34a;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  margin-top: 12px;
}

.cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: #6b7280;
}
.cta-link {
  color: #16a34a;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  background: #f3f4f6;
  color: #374151;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 30px;
}

/* SECTION BLOCKS */
.section-block {
  padding: 44px 24px;
  border-top: 1px solid #f0f0f0;
}

.section-tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #16a34a;
  margin-bottom: 10px;
}

.section-heading {
  font-size: 26px;
  font-weight: 800;
  color: #0d1b12;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-text {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* STATS */
.stats-row {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  background: #f4fdf7;
  border-radius: 18px;
  padding: 20px;
}
.stat-box { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-num { font-size: 20px; font-weight: 800; color: #16a34a; }
.stat-label { font-size: 11px; color: #888; font-weight: 500; }

/* FOUNDER */
.founder-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fafafa;
  border-radius: 18px;
  padding: 20px;
}
.founder-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.founder-info h3 { font-size: 16px; color: #111; font-weight: 700; margin-bottom: 4px; }
.founder-role {
  font-size: 11.5px;
  color: #16a34a;
  font-weight: 600;
  background: #eafcf1;
  padding: 3px 12px;
  border-radius: 10px;
}

/* STEPS */
.step-item { display: flex; gap: 14px; margin-top: 22px; }
.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eafcf1;
  color: #16a34a;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text h4 { font-size: 14.5px; color: #111; font-weight: 600; margin-bottom: 3px; }
.step-text p { font-size: 13px; color: #888; line-height: 1.55; }

/* FEEDBACK */
.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}
.feedback-form input, .feedback-form textarea {
  width: 100%;
  border: 1.5px solid #eee;
  background: #f8f9fb;
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 13.5px;
  font-family: inherit;
  color: #111;
  resize: none;
  outline: none;
}
.feedback-form input:focus, .feedback-form textarea:focus {
  border-color: #22c55e;
  background: white;
}

.fb-success {
  display: none;
  margin-top: 14px;
  font-size: 13px;
  color: #16a34a;
  font-weight: 600;
}
.fb-success.show { display: block; }

/* FOOTER */
.landing-footer {
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 24px 50px;
  border-top: 1px solid #f0f0f0;
}
.footer-buttons { display: flex; flex-direction: column; }
.footer-text {
  text-align: center;
  font-size: 11.5px;
  color: #bbb;
  margin-top: 14px;
}

.nav-right { display: flex; align-items: center; gap: 10px; }

.nav-menu-wrap { position: relative; }

.nav-dots-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #eee;
  background: white;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  font-family: inherit;
}

.nav-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 42px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  min-width: 190px;
  overflow: hidden;
  z-index: 50;
}
.nav-dropdown.show { display: block; }

.nav-dropdown div {
  padding: 13px 16px;
  font-size: 13.5px;
  color: #333;
  cursor: pointer;
  border-bottom: 1px solid #f4f4f4;
}
.nav-dropdown div:last-child { border-bottom: none; }
.nav-dropdown div:active { background: #f8f9fb; }

/* Search Loraj brand logo */
.sli-brand-logo { width:34px; height:34px; border-radius:10px; object-fit:cover; display:block; }
