:root {
  --bg-dark: #07160e;
  --bg-light: #f7f9f8;
  --green: #3ecf6e;
  --green-dark: #2fae5c;
  --ink: #0d1b13;
  --ink-muted: #6b7a70;
  --border: #e6ebe7;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg-light);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.disp { font-family: 'Plus Jakarta Sans', sans-serif; }

.wrap {
  max-width: 1440px;
  margin: 0 auto;
  background: var(--bg-light);
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  background: var(--bg-dark);
}
nav img { height: 32px; width: auto; }

/* Hero (marketing pages) */
.hero {
  background-color: var(--bg-dark);
  background-image:
    linear-gradient(rgba(62,207,110,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,207,110,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  padding: 88px 24px 96px;
  text-align: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 20px;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.1;
  font-weight: 800;
  color: #f2fbf5;
  margin: 0 auto 22px;
  max-width: 760px;
}
.hero h1 span { color: var(--green); }
.hero p {
  font-size: 17px;
  line-height: 1.6;
  color: #a9bcae;
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 8px;
  background: var(--green);
  color: var(--bg-dark);
  display: inline-block;
}

/* Page header (subpages) */
.page-header {
  background-color: var(--bg-dark);
  background-image:
    linear-gradient(rgba(62,207,110,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,207,110,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  padding: 64px 24px;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  color: #f2fbf5;
  margin: 0 0 10px;
}
.page-header p {
  font-size: 15px;
  color: #a9bcae;
  margin: 0;
}

/* Section shared */
section { padding: 72px 24px; }
.eyebrow-small {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: 12px;
}
h2.disp {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 40px;
}

/* Features */
.features { background: var(--bg-light); }
.features h2 { text-align: center; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e7f8ee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.feature-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.feature-desc { font-size: 14px; line-height: 1.55; color: var(--ink-muted); }

/* How it works */
.how {
  background: #fff;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.how h2 { margin: 0 0 16px; }
.how-intro p { font-size: 15px; line-height: 1.6; color: var(--ink-muted); max-width: 340px; margin: 0; }
.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num { font-size: 13px; font-weight: 700; color: var(--green-dark); }
.step-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.step-desc { font-size: 14px; line-height: 1.55; color: var(--ink-muted); }

/* Contact CTA */
.contact {
  background: var(--bg-light);
  text-align: center;
  padding-bottom: 96px;
}
.contact h2 { margin: 0 0 12px; }
.contact > p { font-size: 15px; color: var(--ink-muted); margin: 0 0 28px; }
.contact .cta-row { margin-bottom: 32px; }
.btn-secondary {
  font-size: 14px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 8px;
  background: var(--green);
  color: var(--bg-dark);
}
.whatsapp-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 22px;
}
.whatsapp-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e7f8ee;
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.whatsapp-name { font-size: 14px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 6px; }
.whatsapp-name .check { color: var(--green); }
.whatsapp-sub { font-size: 13px; color: var(--ink-muted); text-align: left; }

/* Legal / prose content (subpages) */
.legal {
  background: #fff;
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.legal .legal-meta {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0 0 40px;
}
.legal h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: 40px 0 14px;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #35443a;
  margin: 0 0 12px;
}
.legal p:last-child { margin-bottom: 0; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--green-dark); text-decoration: underline; }
.legal ul { margin: 0 0 16px; padding-left: 20px; }
.legal li { font-size: 14.5px; line-height: 1.75; color: #35443a; margin-bottom: 6px; }
.legal .table-wrap { overflow-x: auto; margin: 0 0 20px; }
.legal table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.legal th { font-weight: 700; color: var(--ink); background: #f7f9f8; white-space: nowrap; }
.legal .placeholder { background: #fff4e5; color: #8a5a12; padding: 1px 4px; border-radius: 3px; }

/* Footer */
footer { background: var(--bg-dark); padding: 48px 24px 28px; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo { height: 20px; width: auto; margin-bottom: 16px; }
.footer-address { font-size: 13px; line-height: 1.7; color: #9fb2a6; }
.footer-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; color: #5c7264; margin-bottom: 14px; }
.footer-company { font-size: 13px; line-height: 1.9; color: #c7d4cb; }
.footer-company a { color: var(--green); }
.footer-legal { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-legal a { color: #c7d4cb; }
.footer-bottom {
  border-top: 1px solid #1a2a20;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #5c7264;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  nav { padding: 36px 64px; }
  nav img { height: 40px; }
  .hero { padding: 120px 64px 130px; }
  .hero p { font-size: 17px; }
  .page-header { padding: 96px 64px 88px; }
  section { padding: 100px 64px; }
  .contact { padding-bottom: 130px; }
  footer { padding: 56px 64px 32px; }
}

@media (max-width: 767px) {
  .feature-grid { grid-template-columns: 1fr; }
  .how { grid-template-columns: 1fr; }
  .how-intro p { max-width: none; }
}
