:root{
  --bg:#f7faf7;
  --surface:#ffffff;
  --surface-soft:#f1f7f2;
  --surface-soft-2:#ecf5ef;
  --surface-alt:#f5f8f6;
  --line:#dbe7dd;
  --line-strong:#c8d8cb;
  --text:#173121;
  --muted:#5a6d60;
  --brand:#3c6b49;
  --brand-strong:#21402b;
  --brand-soft:#dff1e4;
  --accent:#f0c96a;
  --danger:#a24747;
  --success:#256346;
  --shadow:0 18px 50px rgba(23,49,33,.09);
  --shadow-soft:0 10px 30px rgba(23,49,33,.06);
  --radius:24px;
  --radius-sm:18px;
  --container:min(1180px, calc(100vw - 2rem));
  --section:clamp(64px, 8vw, 100px);
  --section-sm:clamp(38px, 4vw, 56px);
  --header-height:88px;
}

*,
*::before,
*::after{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  scroll-padding-top:110px;
}

body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(219,239,224,.6), transparent 26%),
    var(--bg);
  line-height:1.6;
}

body.menuOpen{
  overflow:hidden;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
select,
textarea{
  font:inherit;
}

.container{
  width:var(--container);
  margin-inline:auto;
}

.skipLink{
  position:absolute;
  left:1rem;
  top:-4rem;
  z-index:1000;
  background:var(--brand-strong);
  color:#fff;
  padding:.8rem 1rem;
  border-radius:14px;
  transition:top .2s ease;
}

.skipLink:focus{
  top:1rem;
}

.topbar{
  background:var(--brand-strong);
  color:#eaf6ed;
  font-size:.92rem;
}

.topbarInner{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}

.topbarInner p{
  margin:0;
}

.topbarLinks{
  display:flex;
  align-items:center;
  gap:1rem;
  flex-wrap:wrap;
}

.topbarLinks a{
  color:#fff;
  font-weight:700;
}

.header{
  position:sticky;
  top:0;
  z-index:300;
  backdrop-filter:blur(14px);
  background:rgba(247,250,247,.84);
  border-bottom:1px solid rgba(23,49,33,.08);
}

.headerInner{
  min-height:var(--header-height);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}

.brand{
  display:flex;
  align-items:center;
  gap:.85rem;
  min-width:0;
}

.brand img{
  width:min(210px, 42vw);
  height:auto;
}

.nav{
  display:flex;
  align-items:center;
  gap:.3rem;
  flex-wrap:wrap;
}

.navLink{
  padding:.75rem .95rem;
  border-radius:999px;
  font-weight:800;
  color:var(--text);
  transition:background .2s ease, color .2s ease, transform .2s ease;
}

.navLink:hover,
.navLink:focus-visible{
  background:var(--surface-soft);
}

.navLink.isActive{
  background:var(--brand-soft);
  color:var(--brand-strong);
}

.headerQuick{
  display:flex;
  align-items:center;
  gap:.75rem;
}

.quickCall{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 1rem;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  font-weight:800;
  box-shadow:var(--shadow-soft);
}

.menuToggle{
  display:none;
  width:48px;
  height:48px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow-soft);
  cursor:pointer;
  padding:0;
  align-items:center;
  justify-content:center;
  gap:4px;
  flex-direction:column;
}

.menuToggle span{
  display:block;
  width:20px;
  height:2px;
  border-radius:999px;
  background:var(--text);
  transition:transform .2s ease, opacity .2s ease;
}

.menuToggle[aria-expanded="true"] span:nth-child(1){
  transform:translateY(6px) rotate(45deg);
}
.menuToggle[aria-expanded="true"] span:nth-child(2){
  opacity:0;
}
.menuToggle[aria-expanded="true"] span:nth-child(3){
  transform:translateY(-6px) rotate(-45deg);
}

.drawer{
  border-top:1px solid var(--line);
  background:#fff;
  box-shadow:0 14px 40px rgba(23,49,33,.08);
}

.drawerInner{
  display:grid;
  gap:.55rem;
  padding:1rem 0 1.25rem;
}

.drawerLink{
  display:block;
  padding:1rem 1rem;
  border-radius:18px;
  font-weight:800;
  border:1px solid var(--line);
  background:var(--surface-alt);
}

.drawerLink.isActive{
  background:var(--brand-soft);
  border-color:#c9e1d1;
  color:var(--brand-strong);
}

.drawerLinkCta{
  background:var(--brand);
  color:#fff;
  border-color:transparent;
}

.drawerMeta{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  padding:.3rem .15rem 0;
  color:var(--muted);
}

.hero,
.pageHero{
  position:relative;
  overflow:hidden;
}

.homeHero{
  padding-top:clamp(28px, 4vw, 44px);
}

.heroGrid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr);
  gap:clamp(1.5rem, 4vw, 3rem);
  align-items:center;
  padding:clamp(40px, 5vw, 70px) 0;
}

.heroCopy{
  display:grid;
  gap:1rem;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  width:fit-content;
  padding:.45rem .85rem;
  border-radius:999px;
  background:var(--brand-soft);
  color:var(--brand-strong);
  font-size:.8rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.eyebrowSoft{
  background:#fff;
  border:1px solid var(--line);
}

h1,
h2,
h3{
  margin:0;
  line-height:1.08;
  text-wrap:balance;
}

h1{
  font-size:clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing:-.04em;
}

h2{
  font-size:clamp(1.9rem, 3.6vw, 3.2rem);
  letter-spacing:-.03em;
}

h3{
  font-size:clamp(1.15rem, 2.1vw, 1.55rem);
  letter-spacing:-.02em;
}

p{
  margin:0;
  color:var(--muted);
  font-size:1.03rem;
  line-height:1.8;
}

.heroText{
  max-width:64ch;
  font-size:1.08rem;
}

.heroActions,
.ctaActions,
.stackActions{
  display:flex;
  gap:.85rem;
  flex-wrap:wrap;
}

.metricRow{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:1rem;
  margin-top:.4rem;
}

.metricCard{
  padding:1rem 1rem 1rem 1rem;
  border-radius:20px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

.metricCard strong{
  display:block;
  font-size:1.02rem;
  line-height:1.45;
}

.metricCard span{
  display:block;
  margin-top:.28rem;
  color:var(--muted);
  font-size:.9rem;
  font-weight:700;
}

.heroFacts{
  display:grid;
  gap:.6rem;
  padding:0;
  margin:0;
  list-style:none;
}

.heroFacts li{
  position:relative;
  padding-left:1.8rem;
  color:var(--text);
  font-weight:700;
}

.heroFacts li::before{
  content:"";
  position:absolute;
  left:0;
  top:.45rem;
  width:.92rem;
  height:.92rem;
  border-radius:999px;
  background:var(--brand-soft);
  box-shadow:inset 0 0 0 4px var(--brand);
}

.heroFactsLarge{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem 1.2rem;
}

.heroMedia{
  position:relative;
}

.visualCard{
  background:linear-gradient(180deg,#ffffff 0%, #f4f8f4 100%);
  border:1px solid var(--line);
  border-radius:clamp(22px, 3vw, 34px);
  padding:clamp(12px, 2.3vw, 24px);
  box-shadow:var(--shadow);
}

.visualCard img{
  width:100%;
  height:auto;
  border-radius:22px;
  background:var(--surface-alt);
}

.btn{
  --btn-bg:var(--brand);
  --btn-color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 1.2rem;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
  font-size:.82rem;
  transition:transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  box-shadow:var(--shadow-soft);
}

.btn:hover,
.btn:focus-visible{
  transform:translateY(-1px);
}

.btnPrimary{
  background:var(--brand);
  color:#fff;
}

.btnPrimary:hover,
.btnPrimary:focus-visible{
  background:#315d3e;
}

.btnGhost{
  background:#fff;
  color:var(--text);
  border-color:var(--line);
}

.btnGhost:hover,
.btnGhost:focus-visible{
  background:var(--surface-soft);
}

.btnHeader{
  min-height:46px;
  padding-inline:1rem;
}

.btnSubmit{
  width:100%;
  margin-top:.3rem;
}

.section{
  padding:var(--section) 0;
}

.sectionMuted{
  background:linear-gradient(180deg,#edf6ef 0%, #f6faf7 100%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.sectionRaised{
  position:relative;
}

.sectionRaised::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:80px;
  background:linear-gradient(180deg, rgba(60,107,73,.08), transparent);
  pointer-events:none;
}

.sectionFaq{
  background:#fcfdfc;
}

.sectionCta{
  padding-top:0;
  padding-bottom:var(--section);
}

.sectionHeader{
  display:grid;
  gap:.85rem;
  margin-bottom:2rem;
  max-width:72ch;
}

.sectionHeaderCenter{
  margin-inline:auto;
  text-align:center;
}

.cardGrid{
  display:grid;
  gap:1.25rem;
}

.cardGrid.cols2{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.cardGrid.cols3{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.cardGridCompact .card{
  padding:1.35rem;
}

.card{
  display:flex;
  flex-direction:column;
  gap:.95rem;
  min-width:0;
  padding:1.6rem;
  border-radius:var(--radius);
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow);
  border-color:var(--line-strong);
}

.cardSoft{
  background:var(--surface-soft);
}

.cardCompact{
  padding:1.35rem;
}

.cardImage{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:18px;
  border:1px solid var(--line);
  background:var(--surface-alt);
}

.featureList{
  list-style:none;
  display:grid;
  gap:.6rem;
  padding:0;
  margin:0;
}

.featureList li{
  position:relative;
  padding-left:1.5rem;
  color:var(--muted);
}

.featureList li::before{
  content:"";
  position:absolute;
  left:0;
  top:.5rem;
  width:.55rem;
  height:.55rem;
  border-radius:999px;
  background:var(--brand);
}

.textLink{
  font-weight:900;
  color:var(--brand);
  margin-top:auto;
}

.splitSection{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(280px,.9fr);
  gap:1.4rem;
  align-items:start;
}

.splitContent{
  display:grid;
  gap:1rem;
}

.splitVisual{
  margin-top:.4rem;
}

.splitVisual img{
  width:100%;
  height:auto;
  border-radius:24px;
  border:1px solid var(--line);
  background:var(--surface-alt);
  box-shadow:var(--shadow-soft);
}

.infoPanel{
  padding:1.5rem;
  border-radius:var(--radius);
  background:linear-gradient(180deg,#fff 0%, #f7faf8 100%);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  display:grid;
  gap:1rem;
}

.pillRow,
.footerBadgeRow{
  display:flex;
  gap:.7rem;
  flex-wrap:wrap;
}

.pillRow span,
.footerBadgeRow span{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 .9rem;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  font-weight:800;
  font-size:.86rem;
}

.stepGrid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem;
}

.stepCard{
  position:relative;
  padding:1.45rem;
  border-radius:var(--radius);
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  display:grid;
  gap:.75rem;
}

.stepNumber{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  border-radius:16px;
  background:var(--brand-soft);
  color:var(--brand-strong);
  font-weight:900;
  letter-spacing:.06em;
}

.faqList{
  display:grid;
  gap:1rem;
}

.faqEntry{
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  background:#fff;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}

.faqEntry[open]{
  border-color:#cfe0d4;
}

.faqEntry summary{
  position:relative;
  list-style:none;
  cursor:pointer;
  padding:1.25rem 4rem 1.25rem 1.3rem;
  font-weight:800;
  color:var(--text);
}

.faqEntry summary::-webkit-details-marker{
  display:none;
}

.faqEntry summary::after{
  content:"+";
  position:absolute;
  right:1.2rem;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border-radius:999px;
  background:var(--surface-soft);
  color:var(--brand-strong);
  display:grid;
  place-items:center;
  font-size:1.35rem;
  font-weight:700;
}

.faqEntry[open] summary::after{
  content:"–";
}

.faqAnswer{
  padding:0 1.3rem 1.25rem;
}

.breadcrumb ol{
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
  list-style:none;
  margin:0;
  padding:0;
  color:var(--muted);
  font-size:.92rem;
  font-weight:700;
}

.breadcrumb li{
  display:flex;
  align-items:center;
  gap:.6rem;
}

.breadcrumb li + li::before{
  content:"/";
  opacity:.7;
}

.contactLayout{
  display:grid;
  grid-template-columns:minmax(0,.86fr) minmax(0,1.14fr);
  gap:1.35rem;
  align-items:start;
}

.contactSidebar{
  display:grid;
  gap:1.1rem;
}

.contactCard,
.formCard,
.noticePanel{
  padding:1.5rem;
  border-radius:var(--radius);
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.contactCard img{
  width:100%;
  height:auto;
  border-radius:20px;
  border:1px solid var(--line);
  background:var(--surface-alt);
}

.contactList{
  display:grid;
  gap:1rem;
  padding:0;
  margin:0;
  list-style:none;
}

.contactList li{
  display:grid;
  gap:.22rem;
}

.contactList strong{
  color:var(--brand-strong);
  font-size:.84rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.contactForm{
  display:grid;
  gap:1rem;
}

.fieldGrid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1rem;
}

.field{
  display:grid;
  gap:.45rem;
}

label{
  font-size:.88rem;
  font-weight:800;
  color:var(--brand-strong);
}

input,
select,
textarea{
  width:100%;
  padding:.92rem 1rem;
  border:1px solid var(--line-strong);
  border-radius:16px;
  background:#fff;
  color:var(--text);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.6);
}

textarea{
  min-height:180px;
  resize:vertical;
}

input:focus,
select:focus,
textarea:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 4px rgba(60,107,73,.12);
  outline:none;
}

.fieldHint{
  font-size:.86rem;
  color:var(--muted);
}

.filePill{
  width:fit-content;
  max-width:100%;
  padding:.55rem .8rem;
  border-radius:999px;
  background:var(--surface-soft);
  border:1px solid var(--line);
  font-weight:700;
  color:var(--brand-strong);
  overflow-wrap:anywhere;
}

.checkRow{
  display:flex;
  gap:.75rem;
  align-items:flex-start;
  border:1px solid var(--line);
  border-radius:18px;
  padding:1rem;
  background:var(--surface-alt);
}

.checkRow input{
  width:18px;
  height:18px;
  margin-top:.2rem;
  flex:0 0 auto;
}

.statusMessage{
  border-radius:18px;
  padding:1rem 1rem;
  font-weight:700;
}

.statusMessage.isSuccess{
  background:#eef8f1;
  border:1px solid #cde6d6;
  color:var(--success);
}

.statusMessage.isError{
  background:#fbefef;
  border:1px solid #efcdcd;
  color:var(--danger);
}

.noscriptNote{
  padding:1rem;
  border-radius:16px;
  background:var(--surface-soft);
  border:1px solid var(--line);
}

.honeypot{
  position:absolute !important;
  left:-9999px !important;
  top:auto !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

.noticePanel{
  display:grid;
  gap:1rem;
  background:linear-gradient(180deg,#fff 0%, #fcfdfc 100%);
}

.ctaPanel{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  padding:1.6rem;
  border-radius:calc(var(--radius) + 4px);
  background:linear-gradient(135deg, #173121 0%, #2c5538 60%, #416b4c 100%);
  color:#fff;
  box-shadow:var(--shadow);
}

.ctaPanel p,
.ctaPanel h2{
  color:#fff;
}

.ctaPanel .eyebrow{
  background:rgba(255,255,255,.16);
  color:#fff;
}

.footer{
  background:#13261a;
  color:#eaf6ed;
  padding:3.5rem 0 1rem;
  margin-top:var(--section-sm);
}

.footerGrid{
  display:grid;
  grid-template-columns:1.35fr .95fr 1fr 1fr;
  gap:1.4rem;
  align-items:start;
}

.footerLogo img{
  width:min(220px, 100%);
  height:auto;
}

.footerTitle{
  font-size:1.05rem;
  margin-bottom:.8rem;
  color:#fff;
}

.footerList{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:.6rem;
}

.footerList a:hover{
  color:#fff;
}

.footerBottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:2rem;
  padding-top:1rem;
}

.mobileQuickBar{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:250;
  display:none;
  grid-template-columns:repeat(3,1fr);
  gap:.6rem;
  padding:.75rem;
  background:rgba(19,38,26,.92);
  backdrop-filter:blur(12px);
}

.mobileQuickBar a{
  min-height:48px;
  display:grid;
  place-items:center;
  background:#fff;
  color:var(--brand-strong);
  border-radius:16px;
  font-weight:800;
}

:where(a, button, input, select, textarea, summary):focus-visible{
  outline:3px solid rgba(60,107,73,.32);
  outline-offset:3px;
}

@media (max-width:1100px){
  .navLink{
    padding:.7rem .8rem;
  }

  .footerGrid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:980px){
  .nav{
    display:none;
  }

  .menuToggle{
    display:inline-flex;
  }

  .heroGrid,
  .splitSection,
  .contactLayout{
    grid-template-columns:1fr;
  }

  .metricRow,
  .heroFactsLarge,
  .stepGrid,
  .cardGrid.cols3{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .cardGrid.cols2{
    grid-template-columns:1fr;
  }

  .topbarInner{
    min-height:unset;
    padding:.6rem 0;
    align-items:flex-start;
    flex-direction:column;
  }

  .quickCall{
    display:none;
  }

  .heroGrid{
    padding:2.5rem 0 3rem;
  }
}

@media (max-width:720px){
  html{
    scroll-padding-top:90px;
  }

  .topbar{
    display:none;
  }

  .headerInner{
    min-height:74px;
  }

  .brand img{
    width:min(180px, 58vw);
  }

  h1{
    font-size:clamp(2rem, 10vw, 3rem);
  }

  .heroFactsLarge,
  .metricRow,
  .stepGrid,
  .fieldGrid,
  .cardGrid.cols3,
  .footerGrid{
    grid-template-columns:1fr;
  }

  .btn,
  .stackActions .btn,
  .heroActions .btn{
    width:100%;
  }

  .section{
    padding:var(--section-sm) 0;
  }

  .contactCard,
  .formCard,
  .noticePanel,
  .infoPanel,
  .card,
  .ctaPanel{
    padding:1.2rem;
  }

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

  .mobileQuickBar{
    display:grid;
  }

  body{
    padding-bottom:86px;
  }
}

@media (prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
}
