:root{
  --green:#00a651;
  --green2:#078d49;
  --dark:#111827;
  --muted:#64748b;
  --soft:#f4f8f6;
  --line:#e5e7eb;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--dark);
  background:#fff;
}

a{text-decoration:none;color:inherit}

.container{
  width:min(1200px,92%);
  margin:auto;
}

/* TOPBAR */
.topbar{
  background:#0c1b15;
  color:#d7fff0;
  font-size:13px;
}

.topbar-inner{
  height:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.nav-wrap{
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{height:58px}

.menu-btn{
  display:none;
  background:var(--green);
  border:0;
  color:white;
  border-radius:12px;
  font-size:24px;
  padding:8px 12px;
}

nav{
  display:flex;
  gap:22px;
  align-items:center;
  font-weight:700;
  font-size:14px;
}

nav a{color:#263238}

nav a.active,
nav a:hover{color:var(--green)}

.nav-cta{
  background:var(--green);
  color:#fff!important;
  padding:13px 20px;
  border-radius:999px;
  box-shadow:0 12px 25px rgba(0,166,81,.25);
}

/* HOME HERO */
.hero{
  position:relative;
  min-height:760px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero-image{
  background-image:
    linear-gradient(90deg,
      rgba(0,15,11,.90) 0%,
      rgba(0,15,11,.72) 34%,
      rgba(0,15,11,.30) 62%,
      rgba(0,15,11,.08) 100%
    ),
    url("/uploads/pages/hero-pano.jpg") !important;
  background-size:cover !important;
  background-position:center center !important;
  background-repeat:no-repeat !important;
}

.hero-overlay{
  display:none !important;
}

.hero-inner,
.hero .container{
  position:relative;
  z-index:2;
}

.hero-content{
  max-width:720px;
  color:#fff;
}

.eyebrow,
.hero-content .eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 20px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#00bf63;
  font-weight:800;
  margin-bottom:28px;
}

.hero-content h1,
.hero h1{
  margin:0;
  font-size:clamp(46px,5vw,76px);
  line-height:1.02;
  letter-spacing:-3px;
  font-weight:900;
  color:#fff;
}

.hero-content h1 span{
  display:block;
  color:#00bf63;
}

.hero-content p,
.hero p{
  max-width:650px;
  margin:28px 0 30px;
  font-size:20px;
  line-height:1.75;
  color:rgba(255,255,255,.92);
}

.hero-actions{
  display:flex;
  gap:16px;
  margin-top:32px;
  flex-wrap:wrap;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:15px 24px;
  font-weight:800;
}

.btn-primary{
  background:var(--green);
  color:#fff;
}

.btn-white{
  background:#fff;
  color:#123326;
}

/* STATS */
.stats,
.hero-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:-90px;
  position:relative;
  z-index:5;
}

.stat{
  background:rgba(255,255,255,.96);
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  padding:28px 34px;
  box-shadow:0 18px 45px rgba(0,0,0,.16);
}

.stat b{
  display:block;
  color:#00a85a;
  font-size:38px;
  line-height:1;
  font-weight:900;
}

.stat span{
  display:block;
  margin-top:8px;
  color:#111;
  font-weight:600;
}

/* GENERAL SECTIONS */
.section{
  padding:90px 0;
}

.section.soft{
  background:var(--soft);
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px;
  margin-bottom:34px;
}

.section-head h2{
  font-size:42px;
  line-height:1.1;
  margin:0;
  letter-spacing:-1px;
}

.section-head p{
  color:var(--muted);
  max-width:560px;
  line-height:1.7;
}

.grid{
  display:grid;
  gap:24px;
}

.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:28px;
  box-shadow:0 15px 35px rgba(15,23,42,.06);
  transition:.25s;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 25px 55px rgba(0,166,81,.13);
}

.icon{
  width:58px;
  height:58px;
  background:linear-gradient(135deg,var(--green),#18c978);
  color:#fff;
  border-radius:18px;
  display:grid;
  place-items:center;
  font-size:26px;
  margin-bottom:20px;
}

.card h3{
  margin:0 0 12px;
  font-size:21px;
}

.card p,
.lead{
  color:var(--muted);
  line-height:1.75;
}

.product{
  padding:0;
  overflow:hidden;
}

.product .body{
  padding:24px;
}

.card-img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.product .img{
  height:210px;
  background:linear-gradient(135deg,#e8f8f0,#d8ede4);
  display:grid;
  place-items:center;
  font-size:58px;
}

/* SEO INTRO */
.seo-intro .section-head{
  max-width:980px;
}

.seo-link-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:14px;
  margin-top:25px;
}

.seo-link-grid a{
  display:block;
  background:#fff;
  border:1px solid #e8eef3;
  border-radius:14px;
  padding:16px 18px;
  font-weight:700;
  color:#101828;
  box-shadow:0 8px 22px rgba(0,0,0,.05);
}

.seo-link-grid a:hover{
  transform:translateY(-3px);
  color:#00b45c;
}

/* DARK BAND */
.dark-band{
  background:#02110d;
  color:#fff;
  padding:120px 0;
  overflow:hidden;
  position:relative;
}

.dark-band .split,
.split{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
}

.quality-content{
  flex:1;
}

.quality-content .eyebrow{
  display:inline-block;
  padding:10px 22px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:50px;
  color:#00d46a;
  font-size:14px;
  font-weight:600;
  margin-bottom:30px;
}

.quality-content h2{
  color:#fff;
  font-size:52px;
  line-height:1.15;
  margin-bottom:30px;
  font-weight:800;
}

.quality-content .lead{
  color:#d6e7df;
  font-size:20px;
  line-height:1.8;
  margin-bottom:35px;
}

.quality-image{
  flex:1;
  height:500px;
  position:relative;
  overflow:hidden;
  border-radius:35px;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.quality-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.quality-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.20),rgba(0,0,0,.45));
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:40px;
}

.quality-logo{
  font-size:80px;
  font-weight:900;
  color:rgba(255,255,255,.18);
  line-height:1;
}

.quality-subtitle{
  align-self:flex-end;
  color:#fff;
  font-size:22px;
  font-weight:700;
  letter-spacing:2px;
}

/* PAGE HERO */
.page-hero{
  padding:140px 0 90px;
  background:linear-gradient(135deg,#06140c,#0b2f1b 55%,#111);
  color:#fff;
  position:relative;
  overflow:hidden;
}

.page-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 80% 20%,rgba(0,166,81,.35),transparent 35%);
}

.page-hero .container{
  position:relative;
  z-index:2;
}

.page-hero h1{
  font-size:58px;
  margin:0 0 15px;
}

.page-hero p{
  max-width:720px;
  font-size:20px;
  color:#d8e8df;
}

/* ABOUT */
.about-section,
.values-section{
  padding:90px 0;
  background:#fff;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-image img{
  width:100%;
  border-radius:28px;
  box-shadow:0 25px 70px rgba(0,0,0,.15);
}

.about-content h2,
.section-title h2{
  font-size:40px;
  color:#132018;
  margin-bottom:22px;
}

.about-content p{
  color:#59645d;
  font-size:17px;
  line-height:1.8;
  margin-bottom:18px;
}

.mission-section{
  padding:80px 0;
  background:#f4f8f5;
}

.mission-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.mission-card{
  background:#fff;
  padding:38px;
  border-radius:24px;
  box-shadow:0 15px 45px rgba(0,0,0,.06);
}

.mission-card.dark{
  background:#0b2415;
  color:#fff;
}

.mission-card h3{
  font-size:25px;
  margin-bottom:15px;
}

.mission-card p{
  color:#66736b;
  line-height:1.7;
}

.mission-card.dark p{
  color:#d8e8df;
}

/* VALUES */
.section-title{
  text-align:center;
  max-width:800px;
  margin:0 auto 60px;
}

.section-title span{
  color:#00b45c;
  font-weight:700;
  letter-spacing:2px;
  font-size:13px;
}

.section-title h2{
  font-size:42px;
  margin:15px 0;
  color:#101828;
}

.section-title p{
  color:#667085;
  line-height:1.8;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.value-box{
  padding:32px;
  border-radius:24px;
  border:1px solid #e3eee7;
  background:#fff;
  transition:.3s;
}

.value-box:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 55px rgba(0,166,81,.13);
}

.value-box strong{
  color:#00a651;
  font-size:28px;
}

.value-box h4{
  margin:18px 0 12px;
  font-size:21px;
  color:#132018;
}

.value-box p{
  color:#637067;
  line-height:1.6;
}

/* REFERENCES */
.references-section{
  background:#f7f9fb;
}

.reference-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.reference-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.25s;
}

.reference-card:hover{
  transform:translateY(-8px);
}

.reference-image{
  height:180px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:15px;
  overflow:hidden;
  border-bottom:1px solid #eee;
}

.reference-image img{
  max-width:100%;
  max-height:150px;
  width:auto;
  height:auto;
  object-fit:contain;
  transition:.25s;
}

.reference-content{
  padding:25px;
}

.reference-content h3{
  margin:0 0 10px;
  font-size:24px;
  color:#101828;
}

.project-name{
  display:inline-block;
  background:#00b45c;
  color:#fff;
  padding:8px 15px;
  border-radius:50px;
  font-size:13px;
  font-weight:600;
  margin-bottom:15px;
}

.reference-content p{
  color:#667085;
  line-height:1.8;
}

/* GALLERY */
.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.gallery a{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:12px;
  color:#111827;
  text-align:center;
  box-shadow:0 15px 35px rgba(15,23,42,.06);
}

.gallery div{
  height:240px;
  border-radius:24px;
  background:linear-gradient(135deg,#e8f8f0,#b7eacc);
  display:grid;
  place-items:center;
  font-weight:900;
  color:#075c32;
}

.gallery-img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:18px;
  display:block;
  margin-bottom:10px;
}

/* CONTACT */
.contact-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.form input,
.form textarea{
  width:100%;
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:16px;
  margin-bottom:14px;
  font:inherit;
}

.form textarea{
  height:150px;
}

.alert{
  background:#dcfce7;
  color:#14532d;
  border-radius:14px;
  padding:12px;
  margin-bottom:14px;
  font-weight:700;
}

.content-html{
  line-height:1.8;
  color:#334155;
}

.content-html h2,
.content-html h3{
  color:#111827;
}

/* CTA */
.cta-section{
  padding:70px 0;
  background:#0b2415;
}

.cta-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  color:#fff;
}

.cta-box h2{
  font-size:34px;
  margin-bottom:10px;
}

.cta-box p{
  color:#cde5d6;
}

/* FOOTER */
.footer{
  background:#07120e;
  color:#cbd5e1;
  padding-top:70px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:32px;
}

.footer-logo{
  height:58px;
  background:#fff;
  border-radius:12px;
  padding:4px;
}

.footer a{
  display:block;
  margin:10px 0;
  color:#d8efe5;
}

.footer h4{
  color:#fff;
}

.copy{
  text-align:center;
  border-top:1px solid rgba(255,255,255,.1);
  padding:20px;
  margin-top:40px;
  color:#94a3b8;
}

/* RESPONSIVE */
@media(max-width:992px){
  .hero{
    min-height:680px;
  }

  .hero-image{
    background-image:
      linear-gradient(90deg,rgba(0,15,11,.94),rgba(0,15,11,.68)),
      url("/uploads/pages/hero-pano.jpg") !important;
  }

  .stats,
  .hero-stats{
    grid-template-columns:repeat(2,1fr);
  }

  .dark-band .split,
  .split{
    flex-direction:column;
  }

  .quality-content h2{
    font-size:38px;
  }

  .quality-image{
    width:100%;
    height:380px;
  }

  .quality-logo{
    font-size:54px;
  }
}

@media(max-width:900px){
  .topbar{display:none}

  .menu-btn{display:block}

  nav{
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:82px;
    background:#fff;
    flex-direction:column;
    padding:22px;
    border-bottom:1px solid var(--line);
  }

  .menu-open nav{
    display:flex;
  }

  .grid-3,
  .grid-4,
  .about-grid,
  .mission-grid,
  .values-grid,
  .contact-box,
  .footer-grid,
  .gallery{
    grid-template-columns:1fr;
  }

  .section-head{
    display:block;
  }

  .section{
    padding:64px 0;
  }

  .page-hero h1{
    font-size:42px;
  }

  .logo img{
    height:46px;
  }

  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:600px){
  .hero{
    min-height:620px;
  }

  .hero-content h1,
  .hero h1{
    letter-spacing:-1.5px;
    font-size:42px;
  }

  .hero-content p,
  .hero p{
    font-size:17px;
  }

  .stats,
  .hero-stats{
    grid-template-columns:1fr;
    margin-top:30px;
  }
}