:root{
  --bg:#f6f2ea;
  --surface:#ffffff;
  --surface-2:#fbfaf7;
  --text:#1f2a22;
  --muted:#5b6a60;

  --brand:#2f6b4f;
  --brand-2:#2a5f46;
  --accent:#d9a441;
  --line:#e7dfd1;

  --shadow: 0 12px 30px rgba(25, 35, 28, .08);
  --shadow-soft: 0 8px 20px rgba(25, 35, 28, .06);

  --r: 18px;
  --r2: 22px;
  --container: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1100px 700px at 10% 0%, rgba(47,107,79,.10), transparent 55%),
    radial-gradient(900px 600px at 90% 10%, rgba(217,164,65,.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 55%, #ffffff 100%);
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--container); margin:0 auto; padding:0 16px}


.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.72);
  border-bottom:1px solid rgba(231,223,209,.75);
}

.header__inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:12px;
  padding:10px 0;
}

.brand{display:flex; align-items:center; gap:10px; min-width: 200px;}
.logo{
  width:38px; height:38px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(47,107,79,.14), rgba(217,164,65,.12));
  border:1px solid rgba(47,107,79,.18);
}
.brand__name{display:flex; flex-direction:column; line-height:1.05; font-weight:800; letter-spacing:.2px;}
.brand__name small{font-weight:700; color:var(--muted); letter-spacing:0}

.nav{
  display:flex;
  flex-wrap:nowrap;
  gap:10px;
  white-space:nowrap;
  justify-content:center;
}
.nav a{
  padding:8px 10px;
  border-radius:999px;
  color:var(--muted);
  font-weight:700;
  font-size:14px;
  border:1px solid transparent;
}
.nav a:hover{
  color:var(--text);
  border-color:rgba(47,107,79,.18);
  background:rgba(255,255,255,.7);
}

.header__cta{
  justify-self:end;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:nowrap;
  white-space:nowrap;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border-radius:999px;
  padding:12px 16px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:active{transform: translateY(1px)}

.btn--primary{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color:#fff;
  box-shadow: 0 12px 26px rgba(47,107,79,.22);
}
.btn--primary:hover{box-shadow: 0 16px 32px rgba(47,107,79,.26)}

.btn--ghost{
  background: rgba(255,255,255,.8);
  color:var(--text);
  border-color: rgba(47,107,79,.18);
  box-shadow: var(--shadow-soft);
}
.btn--ghost:hover{background:#fff}


.hero{padding:26px 0 8px}

.hero__card{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border:1px solid rgba(231,223,209,.9);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  padding:22px;
  align-items:center;
}

.hero h1{
  margin:0 0 10px;
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing:-.5px;
  line-height:1.05;
}

.hero p{
  margin:0 0 16px;
  color:var(--muted);
  font-weight:650;
  font-size: clamp(15px, 2vw, 18px);
  line-height:1.5;
}

.hero__chips{
  display:flex; flex-wrap:wrap; gap:10px;
  margin:12px 0 0;
}

.chip{
  display:inline-flex; gap:8px; align-items:center;
  padding:9px 12px;
  border-radius:999px;
  background: rgba(47,107,79,.08);
  border:1px solid rgba(47,107,79,.14);
  color:var(--text);
  font-weight:800;
  font-size:13px;
}


.hero__art{
  padding:0;
  overflow:hidden;
  border:1px solid rgba(231,223,209,.9);
  border-radius: 18px;
  min-height: 210px;
}
.heroImg{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  border-radius:18px;
}


section{padding:14px 0}

.sectionTitle{
  margin:0 0 12px;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing:-.3px;
}

.sectionLead{
  margin:0 0 16px;
  color:var(--muted);
  font-weight:650;
  line-height:1.55;
}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

.card{
  margin-top: 10px;
  background: rgba(255,255,255,.86);
  border:1px solid rgba(231,223,209,.9);
  border-radius: var(--r);
  box-shadow: var(--shadow-soft);
  padding:16px;
}


.list{
  margin:0; padding:0; list-style:none;
  display:grid; gap:10px;
}
.li{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(47,107,79,.06);
  border:1px solid rgba(47,107,79,.12);
}
.li strong{display:block; font-weight:900}
.li span{color:var(--muted); font-weight:650}
.ico{
  width:22px; height:22px; border-radius:9px;
  display:grid; place-items:center;
  background: rgba(47,107,79,.14);
  border:1px solid rgba(47,107,79,.18);
  flex:0 0 auto;
  margin-top:1px;
}


.pillGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
}
.pill{
  display:flex; align-items:center; gap:10px;
  padding:11px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.85);
  border:1px solid rgba(231,223,209,.9);
  font-weight:800;
  color:var(--text);
  min-width:0;
}


.contacts{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:12px;
  align-items:center;
  padding:16px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.86);
  border:1px solid rgba(231,223,209,.9);
  box-shadow: var(--shadow-soft);
}

.contacts h3{margin:0 0 6px; font-size:18px}
.contacts .meta{margin:0; color:var(--muted); font-weight:650; line-height:1.45}

.contactLinks{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;}

.linkBtn{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius: 999px;
  background: rgba(47,107,79,.08);
  border:1px solid rgba(47,107,79,.16);
  font-weight:850;
  color:var(--text);
  white-space:nowrap;
}
.linkBtn:hover{background: rgba(47,107,79,.12)}

.hr{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(231,223,209,.95), transparent);
  margin:14px 0;
  border:0;
}


.missionHero{
  position:relative;
  padding:0;
  overflow:hidden;
  border-radius:22px;
  min-height:420px;
}

.missionHero__bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  filter:saturate(1.02) contrast(1.02);
}

.missionHero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 420px at 20% 30%, rgba(255,255,255,.35), transparent 55%),
    radial-gradient(700px 420px at 80% 20%, rgba(255,255,255,.28), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
  pointer-events:none;
}

.missionHero__panel{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;

  background:rgba(255,255,255,.86);
  border:1px solid rgba(231,223,209,.95);
  border-radius:18px;
  padding:18px 18px 16px;

  box-shadow: 0 18px 40px rgba(25, 35, 28, .12);
  backdrop-filter: blur(10px);
}

.missionHero__title{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.missionHero__title h3{
  margin:0;
  font-size:22px;
  font-weight:900;
  letter-spacing:-.2px;
}

.missionHero__check{
  width:44px;
  height:44px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 20px rgba(47,107,79,.22);
}

.missionHero__lead{
  margin:0 0 10px;
  font-size:16px;
  line-height:1.65;
  color:var(--text);
  font-weight:650;
}
.missionHero__lead b{ font-weight:900; }

.missionHero__text{
  margin:0;
  font-size:14.5px;
  line-height:1.75;
  color:var(--muted);
  font-weight:650;
}


.audienceStack{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}

.audTitle, .candTitle{
  margin:0 0 12px;
  font-size:18px;
  font-weight:800;
  letter-spacing:-.2px;
}

.audPills{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px 14px;
}

.audPill{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  background:#fbfaf7;
  border:1px solid #e9e3d8;
  font-weight:700;
  font-size:14px;
  color:var(--text);
  min-width:0;
}

.audDot{
  width:14px;
  height:14px;
  border-radius:6px;
  background: linear-gradient(135deg, rgba(47,107,79,.25), rgba(47,107,79,.12));
  border:1px solid rgba(47,107,79,.22);
  flex:0 0 14px;
}

.candList{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.candItem{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px 14px;
  border-radius:14px;
  background:#f2f6f4;
  border:1px solid rgba(47,107,79,.16);
  min-width:0;
}

.candCheck{
  width:22px;
  height:22px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(47,107,79,.14);
  color: var(--brand);
  font-weight:900;
  flex:0 0 22px;
}

.candText strong{
  display:block;
  font-size:14px;
  font-weight:800;
  color:var(--text);
  line-height:1.25;
}

.candText span{
  display:block;
  margin-top:2px;
  font-size:13px;
  color:var(--muted);
  font-weight:650;
  line-height:1.35;
}


.servicesLayout{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:14px;
  align-items:stretch;
}

.servicesMedia{
  border-radius: 16px;
  overflow:hidden;
  border:1px solid rgba(231,223,209,.9);
  background: rgba(255,255,255,.7);
  min-height: 260px;
}

.servicesImg{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}


#reviews, #reviews * { box-sizing: border-box; }
#reviews { background: transparent; }

.container{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 14px;
}

.reviewsSection{
  padding:24px 0;
}

.sectionCard{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:22px;
  padding:20px;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.reviewsTitle{
  font-size:26px;
  font-weight:900;
  margin:0 0 6px;
}

.reviewsLead{
  margin:0 0 20px;
  font-size:14px;
  color:#666;
}

.reviewsGrid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.reviewCard{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:16px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
  transition:.25s;
}

.reviewCard:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,.1);
}

.reviewTop{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:10px;
  gap:10px;
}

.company{
  display:flex;
  gap:10px;
  align-items:flex-start;
  min-width:0;
}

.companyLogo{
  width:44px;
  height:44px;
  border-radius:14px;
  background:linear-gradient(135deg,#dff3e3,#cbe8d1);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#1f5f38;
  flex:0 0 44px;
}

.companyLogo svg{
  width:20px;
  height:20px;
}

.companyMeta{
  min-width:0;
}

.companyMeta b{
  font-size:14px;
  display:block;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.companyMeta small{
  font-size:12px;
  color:#777;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  display:block;
}

.stars{
  color:#ff9800;
  font-size:15px;
  letter-spacing:1px;
  white-space:nowrap;
  flex:0 0 auto;
}

.reviewCard p{
  font-size:14px;
  margin:10px 0;
  line-height:1.5;
}

.reviewFoot{
  margin-top:12px;
  padding-top:10px;
  border-top:1px solid rgba(0,0,0,.06);
  display:flex;
  justify-content:space-between;
  font-size:12px;
}


.stepsCard{
  position: relative;
  overflow: hidden;
}

.stepsCard::before{
  content:"";
  position:absolute;
  inset:-60px -80px auto auto;
  width:220px;
  height:220px;
  background: radial-gradient(circle at 30% 30%, rgba(47,95,56,.14), transparent 60%);
  pointer-events:none;
}

.stepsTitle{
  margin:0;
  font-size:18px;
  font-weight:900;
  color:#0b1220;
}

.stepsLead{
  margin:6px 0 14px;
  font-size:12px;
  font-weight:700;
  color:var(--muted);
}

.steps{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.step{
  position: relative;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px 12px;
  border-radius:16px;
  background: rgba(255,255,255,.8);
  border:1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 22px rgba(0,0,0,.04);
  transition: transform .18s ease, box-shadow .18s ease;
}

.step::before{
  content:"";
  position:absolute;
  left: 30px;
  top: 52px;
  bottom: -10px;
  width:2px;
  background: linear-gradient(180deg, rgba(47,95,56,.25), rgba(47,95,56,0));
}

.step:last-child::before{ display:none; }

.stepNum{
  width:38px;
  height:38px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#1f5f38;
  background: linear-gradient(135deg, #dff3e3, #cbe8d1);
  border:1px solid rgba(0,0,0,.06);
  flex: 0 0 38px;
}

.stepBody b{
  display:block;
  font-size:13px;
  font-weight:900;
  color:#0b1220;
  line-height:1.2;
}

.stepBody small{
  display:block;
  margin-top:4px;
  font-size:12px;
  font-weight:700;
  color:var(--muted);
  line-height:1.35;
}

.step:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.06);
}


*{ box-sizing:border-box; }
img, svg, video{ max-width:100%; height:auto; }


@media (max-width: 980px){
  .header__inner{ grid-template-columns: 1fr auto; }
  .nav{ display:none; }

  .hero__grid{grid-template-columns: 1fr; }
  .grid2{grid-template-columns:1fr}
  .reviewsGrid{grid-template-columns: repeat(2, minmax(0, 1fr));}
  .contacts{grid-template-columns: 1fr; }
  .contactLinks{justify-content:flex-start}
  .missionHero{ min-height:380px; }
  .pillGrid{ grid-template-columns: 1fr; }
  .audPills{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .header__inner{gap:10px}
  .brand{min-width:auto}
  .brand__name{font-size:14px}
  .brand__name small{font-size:12px}
  .btn{padding:11px 14px}
  .reviewsGrid{grid-template-columns: 1fr;}
  .hero__art{min-height: 200px}

  .missionHero{ min-height:340px; }
  .missionHero__panel{
    left:12px; right:12px; bottom:12px;
    padding:14px;
  }
  .missionHero__title h3{ font-size:18px; }
  .missionHero__check{ width:40px; height:40px; }
  .missionHero__lead{ font-size:15px; }
}

@media (max-width: 980px){
  .servicesLayout{ grid-template-columns: 1fr; }
  .servicesMedia{ min-height: 200px; }
}

@media(max-width:900px){
  .reviewsGrid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:560px){
  .reviewsGrid{grid-template-columns:1fr;}
}




html, body{ max-width:100%; overflow-x:hidden; }
.header{ overflow-x:clip; }


@media (max-width: 980px){
  .header__inner{
    grid-template-columns: 1fr !important;
    align-items:center !important;
    gap:10px !important;
  }

  .brand{
    min-width:0 !important;
  }

  .header__cta{
    justify-self:stretch !important;
    width:100% !important;
    display:flex !important;
    gap:10px !important;
    flex-wrap:wrap !important;   
    white-space:normal !important; 
  }

  .header__cta .btn{
    flex: 1 1 220px !important;  
    min-width: 0 !important;
  }
}


@media (max-width: 560px){
  .header__cta{
    flex-direction:column !important;
    align-items:stretch !important;
  }

  .header__cta .btn{
    width:100% !important;
    flex: 1 1 auto !important;
  }

 
  .header__inner{ padding:10px 0 !important; }
  .btn{ padding:11px 14px !important; }

  
  .brand__name{ min-width:0 !important; }
  .brand__name,
  .brand__name small{
    overflow:hidden !important;
    text-overflow:ellipsis !important;
  }
}


@media (max-width: 360px){
  .logo{ width:34px !important; height:34px !important; border-radius:12px !important; }
  .btn{ padding:10px 12px !important; }
}


.reviewsSection .reviewsGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px){
  .reviewsSection .reviewsGrid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px){
  .reviewsSection .reviewsGrid{
    grid-template-columns: 1fr !important;
  }

  .reviewsSection .reviewTop{
    flex-wrap:wrap !important;
    gap:8px !important;
  }
  .reviewsSection .stars{
    margin-left:auto !important;
  }

  .reviewsSection .companyLogo{
    width:40px !important;
    height:40px !important;
    flex:0 0 40px !important;
  }
  .reviewsSection .companyMeta b,
  .reviewsSection .companyMeta small{
    max-width: 210px !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
    white-space:nowrap !important;
    display:block !important;
  }
}

@media (max-width: 360px){
  .reviewsSection .companyMeta b,
  .reviewsSection .companyMeta small{
    max-width: 175px !important;
  }
}


.preload .hero__card,
.preload .header,
.preload .sectionCard,
.preload .card {
  opacity: 0;
  transform: translateY(25px);
}


body.loaded .hero__card,
body.loaded .header,
body.loaded .sectionCard,
body.loaded .card {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.2,.7,.2,1);
}


body.loaded .hero__card {
  transition-delay: .1s;
}


body.loaded .card {
  transition-delay: .25s;
}

body.loaded .sectionCard {
  transition-delay: .35s;
}


.preload .hero h1,
.preload .hero p,
.preload .hero .btn,
.preload .hero .chip {
  opacity:0;
  transform: translateY(15px);
}

body.loaded .hero h1,
body.loaded .hero p,
body.loaded .hero .btn,
body.loaded .hero .chip {
  opacity:1;
  transform:translateY(0);
  transition: all .6s ease;
}

body.loaded .hero h1 { transition-delay:.15s; }
body.loaded .hero p { transition-delay:.25s; }
body.loaded .hero .btn { transition-delay:.35s; }
body.loaded .hero .chip { transition-delay:.45s; }


.pageLoader{
  position:fixed;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;

  background:
    radial-gradient(900px 600px at 20% 10%, rgba(47,107,79,.12), transparent 55%),
    radial-gradient(900px 600px at 90% 20%, rgba(217,164,65,.12), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 60%, #ffffff 100%);

  z-index:9999;
  transition: opacity .45s ease, visibility .45s ease;
}

.loaderRing{
  width:74px;
  height:74px;
  border-radius:999px;
  position:relative;
  display:grid;
  place-items:center;

  background: rgba(255,255,255,.75);
  border:1px solid rgba(231,223,209,.95);
  box-shadow: 0 18px 40px rgba(25,35,28,.10);
  backdrop-filter: blur(10px);
  overflow:hidden;
}


.loaderRing span{
  position:absolute;
  inset:10px;
  border-radius:999px;
  border:3px solid transparent;
  filter: drop-shadow(0 10px 22px rgba(47,107,79,.10));
}

.loaderRing span:nth-child(1){
  border-top-color: rgba(47,107,79,.95);
  border-right-color: rgba(47,107,79,.35);
  animation: loaderSpin 1.05s linear infinite;
}

.loaderRing span:nth-child(2){
  inset:16px;
  border-left-color: rgba(217,164,65,.95);
  border-bottom-color: rgba(217,164,65,.35);
  animation: loaderSpin 1.45s linear infinite reverse;
}

.loaderRing span:nth-child(3){
  inset:22px;
  border-top-color: rgba(47,107,79,.55);
  border-left-color: rgba(47,107,79,.20);
  animation: loaderSpin 1.9s linear infinite;
  opacity:.9;
}


.loaderRing::after{
  content:"";
  position:absolute;
  width:120px;
  height:120px;
  border-radius:999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), transparent 60%);
  transform: translate(-10px,-14px);
  pointer-events:none;
}


.loaderText{
  text-align:center;
  line-height:1.1;
}
.loaderText b{
  display:block;
  font-weight:900;
  letter-spacing:.3px;
  font-size:14px;
  color:var(--text);
}
.loaderText small{
  display:block;
  margin-top:6px;
  font-weight:750;
  color:var(--muted);
  font-size:12px;
}


.pageLoader.hide{
  opacity:0;
  visibility:hidden;
}

@keyframes loaderSpin{
  to{ transform: rotate(360deg); }
}


@media (max-width: 360px){
  .loaderRing{ width:66px; height:66px; }
}