:root{
  --primary:#143D28;
  --primary2:#1F5E3B;
  --gold:#D4A437;
  --gold2:#E6B94A;
  --cream:#F7F4EC;
  --cream2:#EFE7D6;
  --text:#1A1A1A;
  --muted:#666666;
  --card:#FFFFFF;
  --line:rgba(20,61,40,.14);
  --shadow:0 14px 34px rgba(20,61,40,.12);
  --radius:18px;
}

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--cream);
}

.container{
  width:min(1100px,92%);
  margin:0 auto;
}

/* TOP BAR */
.topbar{
  background:#0F2F20;
  color:#fff;
  font-size:14px;
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
}

.pill{
  display:inline-block;
  padding:6px 12px;
  border:1px solid rgba(212,164,55,.45);
  border-radius:999px;
  color:#fff;
}

.toplink{
  color:#fff;
  text-decoration:none;
  opacity:.95;
}

.toplink:hover{
  color:var(--gold);
}

.dot{
  opacity:.7;
  margin:0 8px;
}

/* HEADER */
.header{
  position:sticky;
  top:0;
  background:#143D28;
  border-bottom:1px solid rgba(255,255,255,.08);
  z-index:50;
}

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

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#fff;
}

.brand__logo{
  width:64px;
  height:64px;
  object-fit:contain;
  border-radius:8px;
  background:#fff;
  padding:4px;
}

.brand__name{
  font-weight:900;
  letter-spacing:.2px;
  color:#fff;
}

.brand__tag{
  font-size:13px;
  color:rgba(255,255,255,.75);
  margin-top:2px;
}

/* NAV */
.nav{
  display:flex;
  gap:18px;
  align-items:center;
}

.nav a{
  text-decoration:none;
  color:#fff;
  font-weight:700;
  font-size:14px;
}

.nav a:hover{
  color:var(--gold);
}

/* MOBILE */
.menuBtn{
  display:none;
  border:1px solid rgba(255,255,255,.15);
  background:#fff;
  color:var(--primary);
  border-radius:12px;
  padding:8px 10px;
  font-size:18px;
  cursor:pointer;
}

.mobileNav{
  display:none;
  background:#143D28;
  border-top:1px solid rgba(255,255,255,.08);
  padding:10px 0 14px;
}

.mobileNav a{
  display:block;
  padding:10px 4%;
  text-decoration:none;
  color:#fff;
  font-weight:700;
}

.mobileNav a:hover{
  color:var(--gold);
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  background:var(--gold);
  color:#1A1A1A;
  text-decoration:none;
  font-weight:900;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.05);
}

.btn:hover{
  background:var(--gold2);
}

.btn--ghost{
  background:transparent;
  color:var(--primary2);
  border:2px solid rgba(20,61,40,.22);
  box-shadow:none;
}

.btn--ghost:hover{
  background:rgba(20,61,40,.06);
  border-color:var(--primary2);
}

.btn--small{
  padding:10px 16px;
  font-size:14px;
}

/* HERO */
.hero{
  position:relative;
  background:
    radial-gradient(900px 420px at 18% 10%, rgba(31,94,59,.12), transparent 60%),
    radial-gradient(900px 420px at 84% 0%, rgba(212,164,55,.14), transparent 60%),
    var(--cream);
  padding:58px 0 34px;
  overflow:hidden;
}

.hero__grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:32px;
  align-items:center;
}

.hero h1{
  margin:0 0 12px;
  font-size:clamp(36px,4vw,56px);
  line-height:1.05;
  letter-spacing:-.7px;
  color:var(--text);
}

.accent{
  color:var(--gold);
}

.lead{
  margin:0 0 18px;
  color:rgba(0,0,0,.70);
  font-size:16px;
  line-height:1.6;
}

.hero__cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:20px 0;
}

/* TRUST */
.trust{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:14px;
}

.trust__item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:14px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  box-shadow:0 8px 24px rgba(20,61,40,.07);
}

.trust__icon{
  width:28px;
  height:28px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(212,164,55,.18);
  color:var(--primary2);
  font-weight:900;
}

.trust__title{
  font-weight:900;
  font-size:14px;
  color:var(--text);
}

.trust__desc{
  font-size:13px;
  color:var(--muted);
  margin-top:2px;
}

/* HERO CARD */
.hero__media{
  display:flex;
  justify-content:flex-end;
}

.heroCard{
  width:100%;
  background:#fff;
  border-radius:24px;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
  overflow:hidden;
}

.heroCard__img{
  width:100%;
  height:290px;
  object-fit:cover;
  display:block;
}

.heroCard__meta{
  padding:18px;
}

.badge{
  display:inline-block;
  font-size:12px;
  font-weight:900;
  color:var(--primary2);
  background:rgba(212,164,55,.14);
  border:1px solid rgba(212,164,55,.35);
  padding:6px 10px;
  border-radius:999px;
}

.heroCard__title{
  margin:12px 0 5px;
  font-weight:900;
  color:var(--text);
}

.heroCard__text{
  margin:0;
  color:var(--muted);
}

.hero__wave{
  height:30px;
  background:linear-gradient(to bottom,rgba(0,0,0,0),rgba(20,61,40,.04));
  margin-top:30px;
}

/* SECTIONS */
.section{
  padding:60px 0;
}

.section--alt{
  background:rgba(255,255,255,.55);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.sectionHead h2{
  margin:0 0 8px;
  font-size:30px;
  color:var(--primary);
}

.sectionHead p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

/* PRODUCT CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:22px;
}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}

.card img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid var(--line);
  margin-bottom:10px;
}

.card h3{
  margin:10px 0 8px;
  color:var(--primary);
}

.card ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}

.card li{
  margin:6px 0;
}

.note{
  margin-top:16px;
  padding:14px 16px;
  border-radius:var(--radius);
  border:1px dashed rgba(212,164,55,.65);
  background:rgba(212,164,55,.10);
}

.muted{ color:var(--muted); }
.small{ font-size:13px; }

/* STEPS */
.steps{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:20px;
}

.step{
  display:flex;
  gap:12px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}

.step__num{
  width:36px;
  height:36px;
  border-radius:14px;
  background:rgba(212,164,55,.18);
  color:var(--primary2);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

.step h3{
  margin:0 0 6px;
  color:var(--primary);
}

.step p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
}

/* HIGHLIGHT */
.highlight{
  margin-top:18px;
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  background:rgba(20,61,40,.06);
  border:1px solid rgba(20,61,40,.14);
  border-radius:var(--radius);
  padding:18px;
}

.infra-block h3{
  color:var(--primary);
}

.infra-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:14px;
}

.infra-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
}

.infra-item h4{
  margin:0 0 6px;
  color:var(--primary2);
}

.infra-item p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}

.infra-footer p{
  color:var(--text);
  line-height:1.6;
}

/* ABOUT */
.about{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  align-items:start;
}

.twoCol{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:16px;
}

.miniCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:var(--shadow);
}

.miniCard h3{
  margin:0 0 6px;
  color:var(--primary);
}

.miniCard p{
  margin:0;
  color:var(--muted);
}

.about__side{
  display:grid;
  gap:12px;
}

.stat{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}

.stat__big{
  font-size:28px;
  font-weight:900;
  color:var(--gold);
}

.stat__small{
  color:var(--muted);
  margin-top:6px;
}

/* CONTACT */
.contactGrid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:16px;
  margin-top:18px;
}

.form{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}

.form label{
  display:block;
  font-weight:800;
  font-size:13px;
  margin-bottom:10px;
  color:var(--primary);
}

input,select,textarea{
  width:100%;
  margin-top:8px;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(20,61,40,.18);
  background:#fff;
  font:inherit;
}

input:focus,
select:focus,
textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(212,164,55,.18);
}

textarea{
  resize:vertical;
}

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

.formActions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:12px;
}

.contactCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}

.contactCard h3{
  color:var(--primary);
}

.contactItem{
  margin:10px 0;
}

.k{
  color:var(--muted);
  margin-right:6px;
}

.contactCard a{
  color:var(--primary2);
  font-weight:700;
}

.divider{
  height:1px;
  background:var(--line);
  margin:14px 0;
}

.linkRow{
  display:block;
  text-decoration:none;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  margin-top:10px;
  color:var(--text);
}

.linkRow:hover{
  border-color:var(--gold);
  color:var(--primary2);
}

/* FOOTER */
.footer{
  padding:20px 0;
  border-top:1px solid var(--line);
  background:#0F2F20;
  color:#fff;
}

.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.75);
  font-size:14px;
}

.footer__links a{
  color:rgba(255,255,255,.75);
  text-decoration:none;
}

.footer__links a:hover{
  color:var(--gold);
}

/* RESPONSIVE */
@media (max-width:920px){
  .hero__grid,
  .about,
  .contactGrid{
    grid-template-columns:1fr;
  }

  .hero__media{
    justify-content:flex-start;
  }

  .trust,
  .cards,
  .steps,
  .infra-grid{
    grid-template-columns:1fr;
  }

  .highlight{
    flex-direction:column;
    align-items:flex-start;
  }

  .nav{
    display:none;
  }

  .menuBtn{
    display:inline-flex;
  }

  .mobileNav.show{
    display:block;
  }

  .formRow{
    grid-template-columns:1fr;
  }
}
.heroCard__meta{
  text-align:center;
  padding:24px;
}

.badge{
  display:inline-block;
  margin:0 auto 14px auto;
}

.heroCard__title{
  font-size:30px;
  font-weight:800;
  margin-bottom:12px;
  color:var(--primary);
}

.brandQuote{
  margin: 12px 0 10px;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.6;
  color: var(--primary);
  padding-left: 14px;
  border-left: 4px solid var(--gold);
  letter-spacing: 0.3px;
}

.heroCard__text{
  margin-top:10px;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
}
