/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Tokens ── */
:root {
  --green: #1D9E75;
  --green-dark: #157a5a;
  --green-light: #e8f7f2;
  --black: #0d0d0d;
  --gray-900: #111;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-200: #E5E7EB;
  --gray-100: #F9FAFB;
  --white: #fff;
  --radius: 10px;
  --radius-lg: 16px;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Bricolage Grotesque', 'DM Sans', sans-serif;
}

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--gray-900);
}
.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background .15s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }

/* hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all .2s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.nav-mobile a {
  display: block;
  padding: 14px 24px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}
.nav-mobile a.active { color: var(--green); }
.nav-mobile.open { display: flex; }

@media(max-width:680px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ── Layout helpers ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 80px 0; }
section.tight { padding: 56px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .15s;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--gray-700); border: 1.5px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-lg { padding: 15px 32px; font-size: 16px; }

/* ── Section labels ── */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(36px, 5.5vw, 58px); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; letter-spacing: -.01em; }
h3 { font-size: 22px; font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }
p.lead { font-size: 18px; color: var(--gray-500); line-height: 1.75; }

/* ── Footer ── */
footer {
  background: var(--gray-900);
  color: var(--gray-200);
  padding: 48px 0 32px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media(max-width:680px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.footer-brand span { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--white); }
.footer-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.footer-col h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--gray-200); text-decoration: none; margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray-500);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── WhatsApp widget (shared) ── */
.bb-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.bb-tab {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 15px; border-radius: 24px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-size: 13px; font-weight: 500; color: var(--gray-500);
  cursor: pointer; transition: all .15s; line-height: 1;
  font-family: var(--font);
}
.bb-tab:hover { border-color: var(--green); color: var(--green); }
.bb-tab.bb-on { background: var(--green); border-color: var(--green); color: var(--white); }
.bb-fdesc { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 24px; min-height: 42px; }
.bb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media(max-width:720px) {
  .bb-grid { grid-template-columns: 1fr; gap: 32px; }
  .bb-copy { order: 2; } .bb-ph { order: 1; }
  section > .container { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .trust-bar-items {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px !important;
    max-width: 320px;
    margin: 0 auto;
    text-align: left;
  }
}
.bb-copy h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.bb-copy p { font-size: 15px; color: var(--gray-500); line-height: 1.75; margin-bottom: 24px; }
.bb-ph { background: #f2f0ec; border-radius: var(--radius-lg); padding: 14px; box-shadow: 0 8px 40px rgba(0,0,0,.10); }
.bb-wh { background: var(--green); border-radius: 10px 10px 0 0; padding: 10px 14px; display: flex; align-items: center; gap: 10px; }
.bb-av { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: #9FE1CB; }
.bb-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bb-wn { font-size: 14px; font-weight: 700; color: #fff; margin: 0; }
.bb-ws { font-size: 11px; color: #9FE1CB; margin: 0; }
.bb-chat { background: #ECE5DD; border-radius: 0 0 10px 10px; padding: 12px 10px; min-height: 280px; max-height: 360px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; scroll-behavior: smooth; }
.bb-bub { max-width: 84%; padding: 8px 11px; font-size: 12.5px; line-height: 1.55; }
.bb-in { background: #fff; border-radius: 0 10px 10px 10px; align-self: flex-start; color: #111; }
.bb-out { background: #DCF8C6; border-radius: 10px 0 10px 10px; align-self: flex-end; color: #111; }
.bb-time { font-size: 10px; color: #aaa; margin-top: 3px; text-align: right; }
.bb-out .bb-time { display: flex; align-items: center; justify-content: flex-end; gap: 3px; color: #6aab6a; }
.bb-pill { display: inline-flex; align-items: center; gap: 6px; background: #f0f0f0; border-radius: 6px; padding: 5px 9px; font-size: 12px; color: #444; margin-top: 4px; cursor: pointer; border: none; font-family: var(--font); }
.bb-xpill { cursor: default; }
.bb-rimg { width: 130px; border-radius: 6px; margin-top: 4px; display: block; cursor: pointer; }
.bb-ov { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.82); z-index: 99999; align-items: center; justify-content: center; }
.bb-ov.bb-on { display: flex; }
.bb-ov img { max-width: 90vw; max-height: 82vh; border-radius: 8px; object-fit: contain; }
.bb-cls { position: absolute; top: 16px; right: 20px; color: #fff; font-size: 32px; cursor: pointer; line-height: 1; user-select: none; background: none; border: none; font-family: var(--font); }
