
:root {
  --bg: #FFFFFF;
  --ink: #0B1B12;
  --muted: #4C5F55;
  --brand: #7CF179;
  --brandDark: #0E4930;
  --brandMid: #297343;
  --line: #E7EFE9;
  --shadow: 0 14px 40px rgba(14, 73, 48, 0.14);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
}
a{color:inherit}
img{max-width:100%;display:block}
.container{width:min(1120px,92vw);margin:0 auto}

.muted{color:var(--muted)}
.tiny{font-size:12px}
.big{font-size:22px;font-weight:800}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;}

.topbar{
  background: color-mix(in srgb, var(--brandDark) 88%, black);
  color: rgba(255,255,255,.92);
  font-size: 13px;
}
.topbar__inner{display:flex;justify-content:space-between;align-items:center;gap:12px;padding:10px 0;flex-wrap:wrap}
.topbar__left{display:flex;gap:10px;flex-wrap:wrap}
.pill{
  background: rgba(124,241,121,.14);
  border: 1px solid rgba(124,241,121,.22);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.topbar__link{color:#fff;font-weight:800;text-decoration:none}
.topbar__link:hover{text-decoration:underline}
.dot{opacity:.6}
.topbar__muted{opacity:.85}

.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:14px 0}
.brand__logo{width:230px;height:auto}
.nav{display:flex;align-items:center;gap:16px}
.nav a{text-decoration:none;font-weight:800;font-size:14px;color:color-mix(in srgb, var(--brandDark) 70%, black)}
.nav a:hover{text-decoration:underline}
.navbtn{display:none;border:1px solid var(--line);background:#fff;border-radius:12px;padding:10px;cursor:pointer}
.navbtn span{display:block;width:22px;height:2px;background:var(--brandDark);margin:4px 0}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding: 12px 14px;border-radius: 14px;border:1px solid var(--line);
  font-weight:900;font-size:14px;text-decoration:none;
}
.btn--full{width:100%}
.btn--primary{
  background: var(--brand);
  border-color: rgba(14,73,48,.18);
  box-shadow: 0 10px 22px rgba(124,241,121,.25);
}
.btn--primary:hover{filter:brightness(.98)}
.btn--ghost{background:#fff}
.btn--ghost:hover{border-color: rgba(14,73,48,.22)}

.hero{
  padding: 46px 0 26px;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(124,241,121,.42), transparent 56%),
    radial-gradient(900px 420px at 90% 25%, rgba(14,73,48,.14), transparent 60%),
    linear-gradient(to bottom, rgba(124,241,121,.10), transparent 40%);
}
.hero__grid{display:grid;grid-template-columns: 1.25fr .75fr;gap:22px;align-items:start}
.hero__copy h1{font-size: clamp(30px, 4vw, 48px);line-height:1.06;margin:0 0 12px;letter-spacing:-.02em}
.lead{font-size:16px;color:color-mix(in srgb, var(--brandDark) 70%, var(--muted));max-width:62ch;margin:0 0 18px}
.hero__actions{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:18px}
.trust{display:grid;grid-template-columns: repeat(3, 1fr);gap:10px}
.trust__card{background: rgba(255,255,255,.75);border:1px solid rgba(14,73,48,.10);border-radius:16px;padding:12px}
.trust__title{font-weight:900;font-size:13px}
.trust__sub{font-size:12px;color:var(--muted)}

.card{
  background:#fff;border:1px solid var(--line);border-radius: var(--radius);
  box-shadow: var(--shadow);padding:18px;
}
.card--side{box-shadow: var(--shadow)}
.card__stack{display:grid;gap:10px;margin-top:10px}
.hr{height:1px;background:var(--line);margin:16px 0}

.kv{display:grid;gap:10px}
.kv__row{display:flex;justify-content:space-between;gap:12px;padding:8px 0;border-bottom:1px dashed rgba(14,73,48,.12)}
.kv__row:last-child{border-bottom:none}
.kv__k{color:var(--muted);font-size:13px}

.section{padding: 54px 0}
.section--alt{background: linear-gradient(to bottom, rgba(124,241,121,.08), rgba(124,241,121,.02));border-top:1px solid rgba(14,73,48,.06);border-bottom:1px solid rgba(14,73,48,.06)}
.section__head{margin-bottom:16px}
.section__head h2{font-size:28px;margin:0 0 6px;letter-spacing:-.01em}

.grid3{display:grid;grid-template-columns: repeat(3,1fr);gap:14px}
.feature{background:#fff;border:1px solid var(--line);border-radius: var(--radius);padding:18px}
.feature h3{margin:0 0 8px}

.cta{
  margin-top: 18px;
  display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
  padding: 16px 16px;border-radius: 18px;
  background: rgba(14,73,48,.06);
  border: 1px solid rgba(14,73,48,.10);
}
.cta--tight{margin-top:22px}
.cta__copy h3{margin:0 0 4px}
.cta__actions{display:flex;gap:10px;flex-wrap:wrap}

.tile{display:block;background:#fff;border:1px solid var(--line);border-radius: var(--radius);padding:18px;text-decoration:none}
.tile:hover{border-color: rgba(14,73,48,.22)}
.tile__title{font-weight:900;margin-bottom:6px}
.tile__text{color:var(--muted)}

.pagehero{padding: 40px 0;background: linear-gradient(to bottom, rgba(124,241,121,.12), transparent 55%);border-bottom:1px solid rgba(14,73,48,.06)}
.pagehero__inner{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;flex-wrap:wrap}
.pagehero__actions{display:flex;gap:10px;flex-wrap:wrap}
.pagehero h1{margin:0;font-size: clamp(28px,3vw,40px)}
.crumbs{font-size:13px;color:var(--muted);margin-bottom:10px}
.crumbs a{color:var(--brandDark);text-decoration:none;font-weight:800}
.crumbs span{margin:0 6px}

.servicecard{display:block;background:#fff;border:1px solid var(--line);border-radius: var(--radius);padding:18px;text-decoration:none;box-shadow: var(--shadow)}
.servicecard:hover{border-color: rgba(14,73,48,.22)}
.servicecard__icon{font-size:26px}
.servicecard__link{display:inline-block;margin-top:8px;font-weight:900;color:var(--brandDark)}

.contentgrid{display:grid;grid-template-columns: 1.2fr .8fr;gap:18px;align-items:start}
.prose h2{margin-top: 22px}
.prose p, .prose li{max-width: 78ch}
.checklist{list-style:none;padding:0;margin:0;display:grid;gap:8px}
.checklist li{padding-left:26px;position:relative}
.checklist li:before{content:"✓";position:absolute;left:0;top:0;color:var(--brandMid);font-weight:900}

.steps{display:grid;gap:12px;margin: 14px 0}
.step{display:flex;gap:12px;align-items:flex-start;padding:12px;border:1px solid var(--line);border-radius: 16px;background:#fff}
.step__n{width:28px;height:28px;border-radius:10px;background: rgba(124,241,121,.30);display:flex;align-items:center;justify-content:center;font-weight:900;color:var(--brandDark)}
.step__t{font-weight:900}

.side{display:grid;gap:14px}
.form label{display:grid;gap:6px;font-weight:800;font-size:13px;margin: 10px 0}
.form input,.form textarea{
  width:100%;border:1px solid var(--line);border-radius:14px;padding:12px;font-size:14px;font-family:inherit;outline:none;
}
.form input:focus,.form textarea:focus{border-color: rgba(14,73,48,.35);box-shadow: 0 0 0 4px rgba(124,241,121,.20)}
.form__status{margin-top:10px;font-size:13px;color:var(--muted)}

.map{border-radius:16px;overflow:hidden;border:1px solid var(--line);height:320px}
.map iframe{width:100%;height:100%;border:0}

.accordion{display:grid;gap:10px;margin-top: 10px}
.acc__q{
  width:100%;text-align:left;
  padding: 14px 14px;border-radius: 16px;border:1px solid var(--line);
  background:#fff;font-weight:900;cursor:pointer;
}
.acc__a{display:none;padding: 0 14px 14px;color:var(--muted)}
.acc__q[aria-expanded="true"] + .acc__a{display:block}

.teamgrid{display:grid;grid-template-columns: repeat(2,1fr);gap:14px}
.person{display:flex;gap:14px;align-items:flex-start;background:#fff;border:1px solid var(--line);border-radius: var(--radius);padding:18px;box-shadow: var(--shadow)}
.person__img{width:120px;height:120px;border-radius:20px;object-fit:cover;border:1px solid rgba(14,73,48,.10)}
.person__name{margin:0}
.person__title{margin:4px 0 8px;font-weight:900;color:var(--brandDark)}
.bullets{margin: 10px 0 0;padding-left: 18px;color: color-mix(in srgb, var(--brandDark) 55%, var(--muted))}
.person--add{display:block}
.person--add .person__body{width:100%}

.footer{border-top: 1px solid var(--line);padding: 26px 0;background:#fff}
.footer__inner{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap}
.footer__logo{width:190px}
.footer__links{display:flex;gap:14px;flex-wrap:wrap;font-weight:800;font-size:14px;color: color-mix(in srgb, var(--brandDark) 70%, black)}
.footer__links a{text-decoration:none}
.footer__links a:hover{text-decoration:underline}

@media (max-width: 960px){
  .hero__grid{grid-template-columns: 1fr}
  .trust{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr}
  .contentgrid{grid-template-columns: 1fr}
  .teamgrid{grid-template-columns: 1fr}
  .brand__logo{width:210px}
}
@media (max-width: 820px){
  .navbtn{display:inline-block}
  .nav{
    position:absolute;left:0;right:0;top: 64px;
    display:none;flex-direction:column;gap:10px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    padding: 14px;
  }
  .nav.open{display:flex}
}


/* Services page visual alignment */
.hero--compact { padding: 40px 0 22px; }
.hero__grid--single { grid-template-columns: 1fr; }
.servicecard--plain { box-shadow: var(--shadow); }
.servicecard--plain h3 { margin: 0 0 8px; }
.servicecard__meta { display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: color-mix(in srgb, var(--brandDark) 70%, black);
  background: rgba(124,241,121,.18);
  border: 1px solid rgba(14,73,48,.12);
}
.stack{ display:grid; gap:10px; margin-top:10px; }
