:root{
  --bg:#f6f1e8;
  --bg-soft:#fbf7f1;
  --surface:#fffdf9;
  --surface-strong:#fff8ef;
  --surface-dark:#1f2421;
  --text:#1c211e;
  --muted:#5f685f;
  --muted-strong:#404741;
  --line:rgba(33,40,35,.12);
  --line-strong:rgba(33,40,35,.2);
  --brand:#2b6c4b;
  --brand-strong:#1f5439;
  --accent:#d98f3d;
  --accent-soft:#f2d4af;
  --shadow:0 18px 45px rgba(53, 45, 28, .12);
  --shadow-soft:0 10px 24px rgba(53, 45, 28, .08);
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:16px;
  --radius-sm:12px;
  --max:1140px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100%;
  font-family:"Manrope","Segoe UI",sans-serif;
  background:
    radial-gradient(circle at top left, rgba(217,143,61,.16), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(43,108,75,.14), transparent 24%),
    linear-gradient(180deg, #fbf7f1 0%, #f6f1e8 45%, #f3eee5 100%);
  color:var(--text);
  line-height:1.6;
}

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

.container,
.wrap{
  width:min(calc(100% - 36px), var(--max));
  margin:0 auto;
}

.container{
  padding:28px 0 60px;
}

.wrap{
  padding:28px 0 60px;
}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,250,243,.86));
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  padding:24px;
}

.small{font-size:.93rem;color:var(--muted)}
.muted{color:var(--muted)}
h1,h2,h3{font-family:"Space Grotesk","Manrope","Segoe UI",sans-serif;letter-spacing:-.03em;color:var(--text)}
h1{margin:0 0 12px;font-size:clamp(2.5rem, 6vw, 4.7rem);line-height:.98}
h2{margin:0 0 12px;font-size:clamp(1.7rem, 3vw, 2.6rem);line-height:1.05}
h3{margin:0 0 10px;font-size:1.2rem}
p{margin:0 0 12px}
hr{border:0;border-top:1px solid var(--line);margin:20px 0}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:11px 18px;
  border-radius:999px;
  border:1px solid var(--line-strong);
  background:rgba(255,255,255,.7);
  color:var(--text);
  text-decoration:none;
  font-weight:700;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  box-shadow:var(--shadow-soft);
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 26px rgba(53,45,28,.12);
}

.btnPrimary{
  background:linear-gradient(135deg, var(--brand), var(--brand-strong));
  color:#f7f3ec;
  border-color:transparent;
}

.btnSecondary{
  background:rgba(255,248,239,.92);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(43,108,75,.14);
  background:rgba(43,108,75,.08);
  color:var(--brand-strong);
  font-size:.92rem;
  font-weight:700;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
}

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

.mark{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, var(--brand), #45845f);
  color:#f8f2e8;
  font-family:"Space Grotesk","Manrope",sans-serif;
  font-weight:700;
  box-shadow:0 12px 22px rgba(43,108,75,.22);
}

.brand strong,
.brand span{
  display:block;
}

.list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.li{
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  background:rgba(255,255,255,.65);
}

.li strong{
  display:block;
  margin-bottom:4px;
}

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

.formGrid{display:grid;gap:14px}
.field{display:grid;gap:7px}
label{font-weight:700;color:var(--muted-strong)}
input,select,textarea{
  width:100%;
  padding:13px 14px;
  border:1px solid var(--line-strong);
  border-radius:var(--radius-md);
  background:rgba(255,255,255,.9);
  color:var(--text);
  font:inherit;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
input:focus,select:focus,textarea:focus{
  border-color:rgba(43,108,75,.45);
  box-shadow:0 0 0 4px rgba(43,108,75,.12);
  background:#fff;
}
input::placeholder,textarea::placeholder{color:#869084}
textarea{min-height:120px;resize:vertical}

.help{
  font-size:.92rem;
  color:var(--muted);
}

.notice{
  margin-top:12px;
  padding:13px 15px;
  border-radius:var(--radius-md);
  border:1px solid rgba(43,108,75,.15);
  background:rgba(43,108,75,.06);
  color:var(--muted-strong);
}

.priceBox{
  border:1px dashed rgba(43,108,75,.22);
  background:rgba(255,250,243,.9);
  border-radius:var(--radius-md);
  padding:15px;
  color:var(--muted);
}

.contactBox a{
  color:var(--brand-strong);
  text-decoration:none;
  border-bottom:1px dashed rgba(43,108,75,.35);
}

.siteHeader{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(14px);
  background:rgba(251,247,241,.84);
  border-bottom:1px solid rgba(33,40,35,.08);
}

.siteHeader::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(217,143,61,.45), transparent);
}

.siteNav{
  width:min(calc(100% - 36px), var(--max));
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 0;
}

.siteNavLinks{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.siteNavLinks a{
  padding:9px 12px;
  border-radius:999px;
  text-decoration:none;
  color:var(--muted-strong);
  font-weight:700;
}

.siteNavLinks a:hover{
  background:rgba(255,255,255,.72);
}

.siteNavActions{
  display:flex;
  align-items:center;
  gap:10px;
}

.heroSection{
  padding:38px 0 26px;
}

.heroGrid{
  display:grid;
  grid-template-columns:minmax(0, 1.12fr) minmax(320px, .88fr);
  gap:22px;
  align-items:stretch;
}

.heroPanel{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(160deg, rgba(255,255,255,.84), rgba(255,248,239,.78)),
    var(--surface);
}

.heroPanel::before{
  content:"";
  position:absolute;
  inset:-80px auto auto -90px;
  width:260px;
  height:260px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(217,143,61,.22), transparent 70%);
  pointer-events:none;
}

.heroPanel::after{
  content:"";
  position:absolute;
  right:-70px;
  bottom:-80px;
  width:260px;
  height:260px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(43,108,75,.18), transparent 70%);
  pointer-events:none;
}

.heroContent,
.heroVisual{
  position:relative;
  z-index:1;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(43,108,75,.12);
  color:var(--brand-strong);
  font-size:.92rem;
  font-weight:800;
}

.heroLead{
  max-width:56ch;
  color:var(--muted-strong);
  font-size:1.08rem;
}

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

.heroStats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}

.statCard{
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(33,40,35,.08);
}

.statCard strong{
  display:block;
  font-family:"Space Grotesk","Manrope",sans-serif;
  font-size:1.45rem;
  line-height:1;
  margin-bottom:6px;
}

.heroVisual{
  display:grid;
  gap:14px;
}

.visualCard{
  min-height:100%;
  display:grid;
  gap:14px;
  align-content:space-between;
  background:linear-gradient(160deg, #234732 0%, #18271f 100%);
  color:#eef2eb;
  border-radius:var(--radius-xl);
  padding:24px;
  box-shadow:0 22px 44px rgba(31,39,33,.24);
}

.visualWindow{
  display:grid;
  gap:12px;
  padding:16px;
  border-radius:20px;
  background:rgba(247,243,236,.08);
  border:1px solid rgba(255,255,255,.12);
}

.windowTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:rgba(238,242,235,.72);
  font-size:.92rem;
}

.windowDots{
  display:flex;
  gap:6px;
}

.windowDots span{
  width:9px;
  height:9px;
  border-radius:999px;
  background:rgba(255,255,255,.42);
}

.windowAmount{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
}

.windowAmount strong{
  font-family:"Space Grotesk","Manrope",sans-serif;
  font-size:3rem;
  line-height:.95;
}

.windowMeta{
  display:grid;
  gap:10px;
}

.windowRow{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
  border-top:1px solid rgba(255,255,255,.12);
  color:rgba(238,242,235,.76);
}

.windowRow strong{
  color:#fff8ee;
}

.visualList{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.visualList li{
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
}

.section{
  padding:22px 0;
}

.sectionHeading{
  max-width:62ch;
  margin-bottom:18px;
}

.sectionHeading p{
  color:var(--muted);
}

.accentBlock{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr);
  gap:18px;
}

.accentCard{
  min-height:100%;
}

.miniLabel{
  display:inline-block;
  margin-bottom:10px;
  color:var(--brand);
  font-size:.92rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.serviceGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}

.serviceCard{
  position:relative;
  overflow:hidden;
  min-height:100%;
}

.serviceCard::before{
  content:"";
  position:absolute;
  inset:auto -24px -24px auto;
  width:110px;
  height:110px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(217,143,61,.16), transparent 72%);
  pointer-events:none;
}

.serviceCard p,
.serviceCard li{
  color:var(--muted);
}

.serviceLink{
  margin-top:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--brand-strong);
  text-decoration:none;
  font-weight:800;
}

.featureStrip{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}

.featureTile{
  padding:20px;
  border-radius:22px;
  background:rgba(255,255,255,.58);
  border:1px solid rgba(33,40,35,.08);
  box-shadow:var(--shadow-soft);
}

.featureTile h3{
  margin-bottom:8px;
}

.methodGrid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
}

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

.stepCard{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:14px;
  align-items:flex-start;
  padding:16px;
  border-radius:20px;
  background:rgba(255,255,255,.62);
  border:1px solid rgba(33,40,35,.08);
}

.stepIndex{
  width:38px;
  height:38px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, var(--brand), #4b8864);
  color:#fff8ee;
  font-family:"Space Grotesk","Manrope",sans-serif;
  font-weight:700;
}

.contactGrid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:18px;
}

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

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

.contactList li{
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(33,40,35,.08);
}

.ctaBand{
  padding:26px;
  border-radius:30px;
  background:linear-gradient(135deg, #204c34, #2d6d4c 58%, #c88435 160%);
  color:#f9f4ea;
  box-shadow:0 26px 46px rgba(43,108,75,.24);
}

.ctaBand h2,
.ctaBand p{
  color:inherit;
}

.ctaBand .btn{
  background:#fff7ee;
  color:#173824;
  border-color:transparent;
}

footer{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid rgba(33,40,35,.1);
  color:var(--muted);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

@media (max-width: 980px){
  .heroGrid,
  .accentBlock,
  .methodGrid,
  .contactGrid{
    grid-template-columns:1fr;
  }

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

  .heroStats{
    grid-template-columns:1fr;
  }
}

@media (max-width: 760px){
  .siteNav{
    flex-wrap:wrap;
    justify-content:center;
  }

  .siteNavLinks,
  .siteNavActions{
    justify-content:center;
  }

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

  .serviceGrid,
  .featureStrip,
  .twoCols{
    grid-template-columns:1fr;
  }

  .heroSection{
    padding-top:24px;
  }

  h1{
    font-size:clamp(2.2rem, 12vw, 3.5rem);
  }
}
