:root{
  --green:#1f7a45;
  --green-dark:#155d34;
  --orange:#f28c28;
  --orange-dark:#d46f0d;
  --bg:#fffaf4;
  --card:#ffffff;
  --text:#1f2937;
  --muted:#6b7280;
  --border:#e5e7eb;
  --hero:#fff3e4;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#fffefb 0%, #fff7ec 100%);
}

a{color:var(--green);text-decoration:none}
a:hover{text-decoration:underline}

.container{max-width:1180px;margin:0 auto;padding:0 18px}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}

.brand{display:flex;align-items:center;gap:14px}
.brand img{height:56px;max-width:100%;object-fit:contain}
.brand-text{display:flex;flex-direction:column;justify-content:center}
.brand-subtitle{font-size:.98rem;color:var(--muted)}

.nav{display:flex;gap:14px;flex-wrap:wrap}
.nav a{
  padding:10px 14px;
  border-radius:999px;
  color:var(--text);
  font-weight:600;
}
.nav a.active{background:var(--green);color:#fff}

.hero{
  padding:54px 0 28px;
  background:linear-gradient(135deg,var(--hero) 0%, #fff 100%);
  border-bottom:1px solid #f1ede7;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.35fr .95fr;
  gap:28px;
  align-items:center;
}

.eyebrow{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:#eef9f2;
  color:var(--green-dark);
  font-weight:700;
  font-size:.9rem;
  margin-bottom:14px;
}

.hero h1{
  font-size:clamp(2rem,4vw,3.4rem);
  line-height:1.08;
  margin:0 0 16px;
  color:#16351f;
}

.hero p{
  font-size:1.06rem;
  color:#44515f;
  line-height:1.75;
  margin:0 0 18px;
}

.hero-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
  padding:24px;
}

.hero-card h3{margin-top:0;color:var(--green-dark)}
.hero-card ul{margin:0;padding-left:18px;line-height:1.8;color:#475569}

.hero-home{
  padding-top:42px;
  padding-bottom:34px;
}

.hero-home-card{
  min-height:100%;
}

.section{padding:34px 0}
.section h2{
  font-size:1.8rem;
  margin:0 0 14px;
  color:#153c22;
}

.section p.lead{
  margin:0 0 22px;
  font-size:1.02rem;
  color:#4b5563;
  line-height:1.8;
}

.section-heading{
  margin-bottom:18px;
}

.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow:0 8px 22px rgba(0,0,0,.04);
  padding:22px;
}

.card h3{margin:0 0 12px;color:var(--green-dark)}
.card p{margin:0;color:#4b5563;line-height:1.75}

.pill-list{display:flex;flex-wrap:wrap;gap:10px}
.pill{
  padding:10px 14px;
  border-radius:999px;
  background:#fff8ef;
  border:1px solid #f4d4ab;
  color:#7a4b0f;
  font-weight:700;
  font-size:.94rem;
}

.service-card{border-top:5px solid var(--orange)}
.service-card h3{color:#7a4310;margin-bottom:10px}

.highlight{
  background:#f6fff8;
  border:1px solid #dbeee0;
  border-left:5px solid var(--green);
  border-radius:16px;
  padding:18px 20px;
  color:#3d4b43;
  line-height:1.75;
}

.contact-list{display:grid;gap:14px}
.contact-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
}

.contact-label{
  color:var(--orange-dark);
  font-weight:800;
  margin-bottom:8px;
}

.footer{
  margin-top:40px;
  background:#14321e;
  color:#e7efe9;
  border-top:4px solid var(--orange);
}

.footer-inner{
  padding:24px 0;
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
  text-align:center;
}

.footer a{color:#ffd8aa}

.footer-link{
  color:#e7efe9;
  text-decoration:none;
  font-weight:600;
}

.footer-link:hover{
  color:#ffd8aa;
  text-decoration:underline;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.btn{
  display:inline-block;
  padding:12px 16px;
  border-radius:12px;
  font-weight:700;
  border:1px solid transparent;
}

.btn-primary{
  background:var(--green);
  color:#fff;
}

.btn-secondary{
  background:#fff;
  color:var(--orange-dark);
  border-color:#f1c48a;
}

/* Trust section */
.trust-section{
  padding-top:22px;
  padding-bottom:10px;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.trust-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow:0 8px 22px rgba(0,0,0,.04);
  padding:22px;
}

.trust-card h3{
  margin:0 0 10px;
  color:var(--green-dark);
}

.trust-card p{
  margin:0;
  color:#4b5563;
  line-height:1.7;
}

.trust-number{
  display:inline-block;
  margin-bottom:12px;
  padding:8px 12px;
  border-radius:999px;
  background:#eef9f2;
  color:var(--green-dark);
  font-weight:800;
  font-size:.95rem;
}

/* How it works */
.how-it-works-section{
  padding-top:18px;
  padding-bottom:14px;
}

.how-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.how-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow:0 8px 22px rgba(0,0,0,.04);
  padding:22px;
}

.how-card h3{
  margin:0 0 10px;
  color:var(--green-dark);
}

.how-card p{
  margin:0;
  color:#4b5563;
  line-height:1.7;
}

.how-step{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  margin-bottom:14px;
  border-radius:999px;
  background:var(--orange);
  color:#fff;
  font-weight:800;
  font-size:1rem;
}

/* Who section */
.who-section{
  padding-top:18px;
  padding-bottom:14px;
}

.who-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.who-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow:0 8px 22px rgba(0,0,0,.04);
  padding:22px;
}

.who-card h3{
  margin:0 0 10px;
  color:var(--green-dark);
}

.who-card p{
  margin:0;
  color:#4b5563;
  line-height:1.7;
}

/* Why section */
.why-section{
  padding-top:18px;
  padding-bottom:14px;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.why-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow:0 8px 22px rgba(0,0,0,.04);
  padding:22px;
}

.why-card h3{
  margin:0 0 10px;
  color:var(--green-dark);
}

.why-card p{
  margin:0;
  color:#4b5563;
  line-height:1.7;
}

/* Upload page */
.upload-section{padding-top:28px}
.upload-grid{display:grid;grid-template-columns:2fr 1fr;gap:20px}

.upload-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  padding:16px;
}

.upload-row{display:flex;gap:12px;align-items:center;flex-wrap:wrap}

.upload-card button{
  padding:10px 16px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  background:#2563eb;
  color:#fff;
  cursor:pointer;
}

.upload-card button:disabled{
  opacity:.6;
  cursor:not-allowed;
}

.upload-card input[type=file]{
  padding:8px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  background:#fff;
}

.upload-card select{
  padding:10px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  background:#fff;
  font-size:15px;
}

.upload-card pre{
  white-space:pre-wrap;
  background:#f9fafb;
  border:1px dashed #cbd5e1;
  border-radius:10px;
  padding:12px;
  min-height:60px;
}

#status{font-weight:600}
.muted{color:#6b7280}
.note{font-size:.95rem}
.right .item{display:flex;gap:12px;align-items:center;margin:10px 0}
.thumb{width:100%;max-width:160px;border-radius:8px;border:1px solid #eee}
.camera{display:flex;gap:12px;align-items:center;flex-wrap:wrap;margin-top:10px}
video,canvas{max-width:300px;border-radius:10px;border:1px solid #e5e7eb}
label.cb{display:flex;align-items:center;gap:8px;font-weight:600}

.upload-preview{
  max-width:180px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  display:none;
}

@media (max-width: 920px){
  .hero-grid,.grid-2,.grid-3,.upload-grid,.trust-grid,.how-grid,.who-grid,.why-grid{grid-template-columns:1fr}
  .header-inner{flex-direction:column;align-items:flex-start}
  .nav{width:100%}
}