/* =============================================
   HERO — split-screen banner with trust panel
   ============================================= */

#hero { background: #F2F8F5; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 340px;
}

/* Left panel */
.hero-left {
  padding: 16px 20px 16px 0;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #E3F2EB; color: #2A6E5A;
  font-size: 11px; font-weight: bold; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 20px; margin-bottom: 12px; align-self: flex-start;
}
.hero-pill span {
  width: 7px; height: 7px; background: #C8963A;
  border-radius: 50%; display: inline-block;
}
#hero h1 { font-size: 42px; color: #0F3D2E; line-height: 1.2; margin-bottom: 10px; }
#hero h1 strong { color: #C8963A; display: block; }
.hero-desc {
  font-size: 17px; color: #444; line-height: 1.65;
  margin-bottom: 10px; max-width: 540px;
}
.hero-bullets {
  list-style: none; margin: 8px 0 10px;
  display: flex; flex-direction: column; gap: 9px;
}
.hero-bullets li {
  font-size: 14px; color: #333;
  display: flex; align-items: flex-start; gap: 9px; line-height: 1.5;
}
.hero-bullets li::before {
  content: '✔';
  color: #2A6E5A; font-size: 13px;
  flex-shrink: 0; margin-top: 1px;
}
.hero-ta {
  font-size: 15px; color: #2A6E5A;
  font-family: 'Latha','Nirmala UI',Arial,sans-serif;
  margin-bottom: 14px; line-height: 1.75;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 20px; margin-top: 16px;
  padding-top: 12px; border-top: 1px solid #e8f0ec; flex-wrap: wrap;
}
.ht-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #555; }
.ht-check {
  width: 22px; height: 22px; background: #E3F2EB;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 11px; color: #2A6E5A; flex-shrink: 0;
}

/* Right trust panel */
.hero-right {
  background: #0F3D2E;
  padding: 14px 18px;
  display: flex; flex-direction: column; justify-content: flex-start; gap: 12px;
}
.hr-heading {
  font-size: 13px; font-weight: bold; color: #d4edd8;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,232,216,0.35);
}
.hr-stat { display: flex; align-items: center; gap: 14px; }
.hr-num  { font-size: 30px; font-weight: bold; color: #F0B040; line-height: 1; flex-shrink: 0; min-width: 108px; }
.hr-lbl  { font-size: 12px; color: #c8e8d8; line-height: 1.4; }
.hr-divider { height: 1px; background: rgba(200,232,216,0.25); margin: 2px 0; }
.hr-proj-head {
  font-size: 10px; font-weight: bold; color: #d4edd8;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px;
}
.hr-proj-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; border-bottom: 1px solid rgba(200,232,216,0.18);
}
.hr-proj-row:last-child { border-bottom: none; }
.hr-proj-name  { font-size: 12px; color: #c8e8d8; }
.hr-proj-count { font-size: 12px; color: #F0B040; font-weight: bold; white-space: nowrap; }
.hr-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hr-badge {
  background: rgba(200,150,58,0.18);
  border: 1px solid rgba(240,176,64,0.5);
  border-radius: 6px; padding: 7px 10px;
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; color: #F5CC80; font-weight: bold;
}
.hr-badge-icon { font-size: 14px; }

/* RESPONSIVE HERO */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 360px; }
}
@media (max-width: 768px) {
  .hero-grid  { grid-template-columns: 1fr; }
  .hero-left  { padding: 14px 0 14px; }
  #hero h1    { font-size: 28px; }
  .hero-right { padding: 16px 16px; }
  .hr-num     { font-size: 28px; min-width: 72px; }
  .hero-btns  { flex-direction: column; }
}
