:root {
  --teal: #34777B;
  --teal-dark: #1A3E41;
  --orange: #E6691F;
  --cream: #F3EFE6;
  --ink: #14142B;
  --muted: #6b6f76;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* Header */
.site-head {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img { height: 38px; width: auto; display: block; }
.cta {
  background: var(--teal-dark);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 30px;
  transition: opacity .15s;
}
.cta:hover { opacity: .92; }
.cta-wa {
  background: #25D366;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-wa:hover { background: #1ebe5b; opacity: 1; }

/* Hero */
.hero {
  max-width: 760px;
  margin: 26px auto 12px;
  padding: 0 24px;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: .3px;
  font-size: 13px;
  margin: 0 0 14px;
  background: #fff;
  border: 1px solid #e7e3d8;
  padding: 7px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(20,20,43,.05);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #1e8e3e;
  box-shadow: 0 0 0 3px rgba(30,142,62,.18);
}
.hero h1 {
  font-size: clamp(32px, 5.4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.5px;
  margin: 0 0 16px;
  color: var(--ink);
}
.hero .sub {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 600px;
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: #57606a;
}

/* Reviews container — white card the widget sits inside */
.reviews-section {
  max-width: 1180px;
  margin: 36px auto;
  padding: 34px 26px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(20, 20, 43, .06);
}

/* Footer */
.site-foot {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px 50px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.site-foot a { color: var(--teal); }
.site-foot .muted { font-size: 13px; opacity: .8; margin-top: 6px; }

/* SEO content + FAQ */
.seo-content, .faq {
  max-width: 820px;
  margin: 40px auto 0;
  padding: 0 24px;
}
.seo-content h2, .faq h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  letter-spacing: -.3px;
  margin: 0 0 16px;
  color: var(--ink);
}
.seo-content p {
  color: #4a5158;
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px;
}
.content-cta {
  display: inline-block;
  margin-top: 6px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 30px;
}
.content-cta:hover { background: #1ebe5b; }
.faq { margin-top: 48px; margin-bottom: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 12px;
}
.faq-item h3 {
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--ink);
}
.faq-item p {
  margin: 0;
  color: #4a5158;
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .reviews-section { margin: 22px 14px; padding: 22px 16px; border-radius: 18px; }
  .cta { padding: 10px 16px; font-size: 13px; }
  .seo-content, .faq { padding: 0 16px; }
}
