:root{
  --green:#2f6a45;
  --green-dark:#255338;
  --green-soft:#eaf2ec;
  --red:#b4453f;
  --red-dark:#983731;

  --bg:#f3eee7;
  --paper:#f7f3ed;
  --paper-2:#ece4d9;
  --text:#151918;
  --muted:#5d6763;
  --soft:#7a716b;
  --white:#ffffff;

  --radius:22px;
  --radius-lg:28px;

  --shadow:0 22px 55px rgba(33,24,19,.16);
  --shadow-soft:0 12px 28px rgba(33,24,19,.08);
  --shadow-small:0 8px 18px rgba(33,24,19,.07);

  --container:1600px;

  --mobile-bg:#20231e;
  --mobile-bg-2:#292c26;
  --mobile-surface:#2a2d29;
  --mobile-surface-2:#323530;
  --mobile-surface-soft:rgba(40,43,39,.86);
  --mobile-border:rgba(255,255,255,.07);
  --mobile-text:#f5f3ef;
  --mobile-muted:#c8cdc4;
  --mobile-accent:#88b58b;
  --mobile-accent-2:#9fd3a4;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 90% 20%, rgba(126,159,117,.10) 0%, rgba(126,159,117,0) 24%),
    linear-gradient(180deg,#f6f1ea 0%, #ece5da 100%);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

body.menu-open{
  overflow:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
textarea{
  font:inherit;
}

.container{
  width:min(var(--container), calc(100% - 64px));
  margin:0 auto;
}

/* Topbar */

.topbar{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(10,16,14,.88);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 10px 28px rgba(0,0,0,.12);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  height:72px;
  position:relative;
}

.brand{
  display:flex;
  align-items:center;
  height:72px;
  flex-shrink:0;
}

.logo{
  display:block;
  height:42px;
  width:auto;
  max-width:none;
  object-fit:contain;
  filter:drop-shadow(0 5px 14px rgba(0,0,0,.24));
}

.brand-mark,
.brand-text{
  display:none;
}

.menu{
  display:flex;
  align-items:center;
  gap:28px;
  color:rgba(255,255,255,.88);
  font-weight:800;
}

.menu a{
  position:relative;
  padding:8px 2px;
  font-size:15px;
  transition:opacity .2s ease, color .2s ease;
}

.menu:hover a{
  opacity:.58;
}

.menu a:hover{
  opacity:1;
  color:#fff;
}

.menu a.active::after,
.menu a:hover::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-3px;
  height:3px;
  border-radius:999px;
  background:#7cc78a;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.burger{
  display:none;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  color:#fff;
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}

.burger span{
  display:block;
  width:16px;
  height:2px;
  border-radius:999px;
  background:currentColor;
  margin:3px 0;
  transition:transform .2s ease, opacity .2s ease;
}

.burger.active span:nth-child(1){
  transform:translateY(5px) rotate(45deg);
}

.burger.active span:nth-child(2){
  opacity:0;
}

.burger.active span:nth-child(3){
  transform:translateY(-5px) rotate(-45deg);
}

/* Buttons */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border:none;
  border-radius:13px;
  font-weight:900;
  letter-spacing:.01em;
  cursor:pointer;
  transition:transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.btn:hover{
  transform:translateY(-2px);
  filter:brightness(1.05);
}

.btn-green{
  background:linear-gradient(180deg,#3f7b52 0%, #2f6a45 100%);
  color:#fff;
  box-shadow:0 12px 26px rgba(47,106,69,.25);
}

.btn-red{
  background:linear-gradient(180deg,#c2554e 0%, #a93e38 100%);
  color:#fff;
  box-shadow:0 12px 26px rgba(180,69,63,.24);
}

.btn-full{
  width:100%;
}

.btn-block{
  width:100%;
  min-height:56px;
  font-size:18px;
  border-radius:15px;
}

/* Hero */

.hero{
  position:relative;
  overflow:hidden;
  color:#fff;
  min-height:750px;
  background:#1b1f1d;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 37%;
  z-index:0;
  filter:brightness(1.08) contrast(1.08) saturate(1.03);
  transform:scale(1.01);
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(circle at 18% 28%, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 24%),
    linear-gradient(
      90deg,
      rgba(10,14,12,.82) 0%,
      rgba(10,14,12,.54) 34%,
      rgba(10,14,12,.16) 64%,
      rgba(10,14,12,0) 100%
    );
}

.hero::after{
  display:none;
}

.hero-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) minmax(320px, 430px);
  gap:32px;
  align-items:center;
  padding:34px 0 24px;
  min-height:750px;
}

.hero-copy{
  max-width:590px;
}

.hero-kicker{
  display:inline-flex;
  margin:0 0 12px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.11);
  border:1px solid rgba(255,255,255,.14);
  font-size:15px;
  font-weight:800;
  color:rgba(255,255,255,.94);
  backdrop-filter:blur(4px);
}

.hero-title{
  margin:0 0 14px;
  font-size:clamp(34px, 4.8vw, 64px);
  line-height:.94;
  font-weight:900;
  letter-spacing:-.05em;
  text-transform:uppercase;
  text-shadow:
    0 2px 6px rgba(0,0,0,.6),
    0 10px 28px rgba(0,0,0,.34);
}

.hero-title span{
  display:block;
  margin-top:10px;
  font-family:Georgia, serif;
  font-size:.46em;
  line-height:1.1;
  font-weight:500;
  text-transform:none;
  letter-spacing:0;
  opacity:.96;
}

.hero-text{
  margin:0;
  max-width:620px;
  font-size:17px;
  line-height:1.7;
  color:rgba(255,255,255,.92);
  text-shadow:0 2px 12px rgba(0,0,0,.22);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
}

.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.hero-trust span{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-size:13px;
  font-weight:800;
}

/* Contact card */

.contact-card{
  width:100%;
  max-width:430px;
  margin-left:auto;
  background:rgba(255,255,255,.96);
  color:var(--text);
  border-radius:24px;
  box-shadow:0 26px 60px rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.40);
  overflow:hidden;
  padding:0;
}

.contact-card-inner{
  padding:22px 22px 20px;
}

.contact-card h2{
  margin:0;
  font-size:15px;
  letter-spacing:.08em;
  font-weight:950;
  text-transform:uppercase;
}

.card-line{
  width:64px;
  height:4px;
  border-radius:999px;
  background:#3b9252;
  margin:13px 0 17px;
}

.contact-form .field{
  margin-bottom:13px;
}

.contact-form label{
  display:block;
  margin-bottom:6px;
  font-size:12px;
  font-weight:900;
  color:rgba(0,0,0,.72);
}

.contact-form input,
.contact-form textarea,
.input,
.textarea{
  width:100%;
  border:1px solid rgba(0,0,0,.13);
  background:#fff;
  border-radius:13px;
  padding:12px 13px;
  outline:none;
  color:#171514;
  transition:border-color .15s ease, box-shadow .15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.input:focus,
.textarea:focus{
  border-color:rgba(47,106,69,.52);
  box-shadow:0 0 0 4px rgba(47,106,69,.10);
}

.contact-form textarea,
.textarea{
  min-height:78px;
  resize:vertical;
}

.radio-row{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin:9px 0 15px;
  font-size:13px;
  font-weight:800;
  color:rgba(0,0,0,.7);
}

.radio-row label{
  display:inline-flex;
  align-items:center;
  gap:7px;
}

.radio-row input{
  accent-color:var(--green);
}

.contact-form small,
.fine{
  display:block;
  margin-top:10px;
  color:rgba(0,0,0,.56);
  font-size:12px;
  font-weight:700;
}

/* Services */

.services-section{
  position:relative;
  padding:30px 0 38px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.90) 0%, rgba(255,255,255,0) 24%),
    radial-gradient(circle at 88% 28%, rgba(85,124,88,.10) 0%, rgba(85,124,88,0) 26%),
    linear-gradient(180deg,#f6f1ea 0%, #eee6dc 45%, #e7ded2 100%);
  overflow:hidden;
}

.services-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.34;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  background-size:260px 260px;
  mix-blend-mode:multiply;
}

.services-section .container{
  position:relative;
  z-index:1;
}

.section-heading,
.reasons-head,
.home-faq-head{
  text-align:center;
  margin-bottom:22px;
}

.eyebrow{
  display:inline-flex;
  margin-bottom:8px;
  font-size:12px;
  line-height:1;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#5c805c;
}

.section-heading h2,
.reasons-head h2,
.home-faq-head h2{
  margin:0;
  font-size:clamp(27px, 2.6vw, 38px);
  line-height:1;
  font-weight:950;
  letter-spacing:.05em;
  color:#202623;
}

.section-line{
  width:68px;
  height:4px;
  border-radius:999px;
  background:#5e9b66;
  margin:13px auto 0;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  align-items:start;
}

.service-card{
  display:block;
  position:relative;
  height:265px;
  border-radius:22px;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(0,0,0,.08)),
    var(--img, linear-gradient(180deg,#54635a,#28332f));
  background-size:cover;
  background-position:center;
  box-shadow:0 12px 28px rgba(33,24,19,.13);
  isolation:isolate;
  transition:transform .22s ease, box-shadow .25s ease, filter .22s ease;
}

.service-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,0) 42%),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.10), rgba(255,255,255,0) 28%);
  pointer-events:none;
}

.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 26px 54px rgba(33,24,19,.20);
  filter:saturate(1.04);
}

.service-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0) 8%,
    rgba(0,0,0,.12) 42%,
    rgba(0,0,0,.76) 100%
  );
  z-index:0;
}

.service-content{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  padding:16px 16px 15px;
  color:#fff;
  z-index:1;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(29,35,30,.42), rgba(20,24,21,.58));
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
}

.service-content h3{
  margin:0 0 6px;
  font-size:18px;
  font-weight:950;
  line-height:1.12;
  letter-spacing:-.01em;
  text-shadow:0 2px 10px rgba(0,0,0,.30);
}

.service-content p{
  margin:0 0 10px;
  font-size:12.5px;
  line-height:1.45;
  color:rgba(255,255,255,.90);
  font-weight:650;
  text-shadow:0 2px 8px rgba(0,0,0,.24);
}

.service-content span{
  display:inline-flex;
  align-items:center;
  color:#d8f0d6;
  font-size:12.5px;
  font-weight:950;
}

/* Overview */

.home-overview{
  margin-top:32px;
}

.overview-panel{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:minmax(0, 1fr) 360px;
  gap:24px;
  border-radius:30px;
  padding:30px;
  background:
    radial-gradient(circle at 10% 14%, rgba(255,255,255,.82) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(135deg, rgba(255,255,255,.86) 0%, rgba(241,235,226,.90) 58%, rgba(222,211,198,.92) 100%);
  border:1px solid rgba(78,58,48,.07);
  box-shadow:0 22px 58px rgba(33,24,19,.11);
}

.overview-panel::after{
  content:"";
  position:absolute;
  right:-70px;
  bottom:-90px;
  width:280px;
  height:280px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(85,124,88,.16) 0%, rgba(85,124,88,0) 70%);
  pointer-events:none;
}

.overview-copy,
.overview-side{
  position:relative;
  z-index:1;
}

.overview-copy h2{
  margin:0 0 14px;
  max-width:760px;
  font-size:clamp(28px, 3vw, 46px);
  line-height:.98;
  font-weight:950;
  letter-spacing:-.055em;
  color:#252320;
}

.overview-copy p{
  margin:0 0 14px;
  max-width:880px;
  font-size:16.5px;
  line-height:1.72;
  color:#5a514b;
  font-weight:550;
}

.overview-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:18px;
}

.overview-tags span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(47,106,69,.09);
  border:1px solid rgba(47,106,69,.10);
  color:#355c40;
  font-size:12.5px;
  font-weight:900;
}

.overview-side{
  display:grid;
  gap:12px;
}

.overview-stat,
.overview-mini{
  border-radius:22px;
  padding:18px;
  background:rgba(255,255,255,.70);
  border:1px solid rgba(60,45,36,.06);
  box-shadow:0 10px 22px rgba(33,24,19,.06);
}

.overview-stat{
  display:flex;
  flex-direction:column;
  min-height:130px;
  justify-content:center;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.72), rgba(255,255,255,0) 38%),
    linear-gradient(180deg, #3e744e 0%, #2e5d3e 100%);
  color:#fff;
}

.overview-stat strong{
  display:block;
  font-size:54px;
  line-height:.9;
  font-weight:950;
  letter-spacing:-.08em;
}

.overview-stat span{
  display:block;
  margin-top:8px;
  font-size:13px;
  line-height:1.35;
  font-weight:800;
  color:rgba(255,255,255,.88);
}

.overview-mini h3{
  margin:0 0 7px;
  font-size:15px;
  line-height:1.2;
  font-weight:950;
  color:#26221f;
}

.overview-mini p{
  margin:0;
  font-size:13px;
  line-height:1.48;
  color:#625a55;
  font-weight:650;
}

/* Reasons */

.reasons{
  margin:38px 0 32px;
}

.reasons-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
}

.reason-card{
  display:flex;
  align-items:center;
  gap:13px;
  padding:17px;
  border-radius:22px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.05);
  box-shadow:var(--shadow-soft);
  transition:transform .18s ease, box-shadow .18s ease;
}

.reason-card:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 38px rgba(33,24,19,.12);
}

.reason-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:50px;
  height:50px;
  border-radius:16px;
  background:rgba(47,106,69,.10);
  color:var(--green-dark);
  font-weight:950;
  flex:0 0 50px;
}

.reason-card h3{
  margin:0 0 4px;
  font-size:14px;
  font-weight:950;
}

.reason-card p{
  margin:0;
  font-size:12.5px;
  line-height:1.5;
  color:var(--muted);
  font-weight:750;
}

/* FAQ */

.home-faq{
  margin:30px 0 30px;
}

.home-faq-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.home-faq-item{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  padding:20px 20px 18px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.05);
  box-shadow:var(--shadow-soft);
}

.home-faq-item::before{
  content:"";
  position:absolute;
  left:0;
  top:18px;
  bottom:18px;
  width:5px;
  border-radius:999px;
  background:#6ca06f;
}

.home-faq-item h3{
  margin:0 0 9px;
  padding-left:10px;
  font-size:16px;
  line-height:1.3;
  font-weight:950;
  color:#202623;
}

.home-faq-item p{
  margin:0;
  padding-left:10px;
  font-size:14px;
  line-height:1.62;
  color:#56615c;
  font-weight:650;
}

/* CTA */

.cta{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.12), transparent 60%),
    linear-gradient(180deg, rgba(17,22,18,.54), rgba(17,22,18,.62)),
    var(--cta, linear-gradient(180deg,#4c5952,#232d29));
  background-size:cover;
  background-position:center;
  box-shadow:0 24px 52px rgba(33,24,19,.20);
}

.cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0));
  pointer-events:none;
}

.cta-inner{
  position:relative;
  z-index:1;
  padding:58px 18px;
  text-align:center;
  color:#fff;
  max-width:720px;
  margin:auto;
}

.cta-inner .eyebrow{
  color:#d9efd9;
}

.cta-inner h3{
  margin:0 0 10px;
  font-size:clamp(28px, 3vw, 40px);
  line-height:1.04;
  font-weight:950;
  letter-spacing:-.035em;
}

.cta-inner p{
  margin:0 0 20px;
  color:rgba(255,255,255,.90);
  font-weight:650;
}

/* Footer */

.footer{
  margin-top:0;
  background:
    radial-gradient(circle at 18% 20%, rgba(123,166,115,.10), transparent 28%),
    linear-gradient(180deg,#121816,#0b100f);
  color:#fff;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:20px 0 12px;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  color:rgba(255,255,255,.82);
  font-weight:900;
}

.footer-links a:hover{
  color:#fff;
}

.footer-contact{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.footer-pill{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.14);
  font-weight:800;
}

.footer-copy{
  padding:0 0 18px;
  color:rgba(255,255,255,.55);
  font-size:12px;
  font-weight:800;
}

.dren-card{
  background-position:center 5%;
}

.hellu-card{
  background-position:center 15%;
}

/* Responsive */

@media (max-width: 1100px){
  .hero-inner{
    grid-template-columns:1fr;
    min-height:auto;
    padding:36px 0 34px;
  }

  .contact-card{
    max-width:460px;
    margin-left:0;
    margin-right:0;
  }

  .services-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .overview-panel{
    grid-template-columns:1fr;
  }

  .overview-side{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .reasons-grid,
  .home-faq-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px){
  body{
    background:linear-gradient(180deg,var(--mobile-bg) 0%, var(--mobile-bg-2) 100%);
    color:var(--mobile-text);
  }

  .container{
    width:min(var(--container), calc(100% - 28px));
  }

  .topbar{
    position:absolute;
    top:0;
    left:0;
    right:0;
    background:linear-gradient(
      180deg,
      rgba(12,14,13,.84) 0%,
      rgba(12,14,13,.58) 62%,
      rgba(12,14,13,.24) 100%
    );
    border-bottom:1px solid rgba(255,255,255,.07);
    box-shadow:0 10px 24px rgba(0,0,0,.22);
  }

  .nav{
    height:50px;
    gap:8px;
  }

  .brand{
    height:50px;
    min-width:0;
    padding:4px 8px;
    border-radius:14px;
    background:rgba(28,31,29,.52);
    border:1px solid rgba(255,255,255,.07);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
  }

  .logo{
    height:23px;
    width:auto;
    max-width:126px;
    object-fit:contain;
    filter:
      drop-shadow(0 3px 14px rgba(0,0,0,.46))
      brightness(.98)
      contrast(1.02);
  }

  .menu{
    display:none;
  }

  .menu.open{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    right:0;
    padding:10px;
    gap:8px;
    background:rgba(24,27,25,.94);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    box-shadow:0 18px 40px rgba(0,0,0,.30);
  }

  .menu:hover a{
    opacity:1;
  }

  .menu a{
    padding:13px 14px;
    border-radius:12px;
    font-size:15px;
    font-weight:850;
    color:#fff;
    background:rgba(255,255,255,.04);
  }

  .menu a.active{
    background:rgba(136,181,139,.14);
    color:#fff;
  }

  .menu a.active::after,
  .menu a:hover::after{
    display:none;
  }

  .nav-actions{
    margin-left:auto;
    gap:7px;
  }

  .nav-actions .btn{
    min-height:34px;
    padding:0 12px;
    border-radius:11px;
    font-size:12px;
    color:#fff;
  }

  .burger{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    padding:0;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.16);
    background:rgba(255,255,255,.06);
    color:#fff;
  }

  .hero{
    min-height:auto;
    background:#161815;
  }

  .hero::before{
    background:linear-gradient(
      180deg,
      rgba(10,12,11,.46) 0%,
      rgba(10,12,11,.24) 24%,
      rgba(10,12,11,.28) 52%,
      rgba(10,12,11,.68) 100%
    );
  }

  .hero::after{
    display:none;
  }

  .hero-bg{
    object-position:72% center;
    filter:brightness(.76) contrast(1.08) saturate(.90);
  }

  .hero-inner{
    grid-template-columns:1fr;
    min-height:auto;
    gap:16px;
    padding:66px 0 18px;
  }

  .hero-copy{
    max-width:none;
    padding:0 4px 0 0;
  }

  .hero-kicker{
    margin:0 0 7px;
    padding:6px 10px;
    font-size:12px;
    color:rgba(255,255,255,.95);
    text-shadow:
      0 2px 10px rgba(0,0,0,.50),
      0 8px 24px rgba(0,0,0,.24);
  }

  .hero-title{
    margin:0 0 10px;
    font-size:clamp(28px, 8.4vw, 38px);
    line-height:.98;
    color:#fff;
    text-shadow:
      0 4px 18px rgba(0,0,0,.56),
      0 10px 30px rgba(0,0,0,.30);
  }

  .hero-title span{
    margin-top:7px;
    font-size:.56em;
    line-height:1.18;
    opacity:1;
  }

  .hero-text{
    max-width:none;
    font-size:14.25px;
    line-height:1.52;
    color:rgba(255,255,255,.94);
    text-shadow:
      0 2px 12px rgba(0,0,0,.48),
      0 6px 20px rgba(0,0,0,.22);
  }

  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin-top:18px;
  }

  .hero-actions .btn{
    width:100%;
    min-height:44px;
    border-radius:14px;
    font-size:14.5px;
  }

  .hero-actions .btn-green{
    background:linear-gradient(180deg,#3f7a50 0%, #2e6540 100%);
    box-shadow:0 10px 24px rgba(46,101,64,.24);
  }

  .hero-actions .btn-red{
    background:linear-gradient(180deg,#bf4f49 0%, #a9413b 100%);
    box-shadow:0 10px 24px rgba(169,65,59,.24);
  }

  .hero-trust{
    gap:8px;
    margin-top:14px;
  }

  .hero-trust span{
    padding:7px 10px;
    font-size:12px;
    background:rgba(255,255,255,.10);
  }

  .contact-card{
    max-width:none;
    margin:24px 0 0;
    background:rgba(255,255,255,.96);
    border-radius:24px;
    box-shadow:0 20px 44px rgba(0,0,0,.16);
    border:1px solid rgba(0,0,0,.06);
    overflow:hidden;
    color:#171514;
    padding:0;
  }

  .contact-card-inner{
    padding:18px 18px 16px;
  }

  .contact-card h2{
    margin:0;
    font-size:18px;
    line-height:1.08;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.01em;
    color:#171514;
  }

  .card-line{
    width:52px;
    height:4px;
    border-radius:999px;
    background:#6c9f72;
    margin:13px 0 16px;
  }

  .contact-form .field{
    margin-bottom:13px;
  }

  .contact-form label{
    display:block;
    margin:0 0 7px;
    font-size:13px;
    font-weight:800;
    color:#2c2724;
  }

  .contact-form input,
  .contact-form textarea,
  .input,
  .textarea{
    width:100%;
    border-radius:14px;
    border:1px solid rgba(0,0,0,.10);
    background:#fff;
    outline:none;
    color:#171514;
  }

  .contact-form input,
  .input{
    height:45px;
    padding:0 14px;
    font-size:14px;
    font-weight:500;
  }

  .contact-form textarea,
  .textarea{
    min-height:92px;
    padding:12px 14px;
    resize:vertical;
    font-size:14px;
    line-height:1.45;
    font-weight:500;
  }

  .radio-row{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    align-items:center;
    margin:10px 0 16px;
    color:#312b28;
  }

  .radio-row label{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:13px;
    font-weight:700;
    color:#312b28;
    cursor:pointer;
  }

  .radio-row input{
    margin:0;
    width:15px;
    height:15px;
    accent-color:#5b8f63;
  }

  .btn-full,
  .btn-block{
    width:100%;
    min-height:53px;
    font-size:17px;
    border-radius:16px;
  }

  .contact-form .btn-red{
    background:linear-gradient(180deg,#b9443e 0%, #a13631 100%);
    box-shadow:0 14px 28px rgba(161,54,49,.24);
  }

  .contact-form small,
  .fine{
    display:block;
    margin:12px 2px 0;
    font-size:12px;
    color:#6f6661;
    font-weight:600;
    line-height:1.4;
  }

  .services-section{
    padding:24px 0 30px;
    background:linear-gradient(180deg,var(--mobile-bg) 0%, var(--mobile-bg-2) 100%);
  }

  .services-section::before{
    display:none;
  }

  .section-heading,
  .reasons-head,
  .home-faq-head{
    margin-bottom:16px;
  }

  .eyebrow{
    font-size:10.5px;
    color:#9fc89e;
  }

  .section-heading h2,
  .reasons-head h2,
  .home-faq-head h2{
    font-size:21px;
    line-height:1.14;
    letter-spacing:.06em;
    color:#f7f5f1;
  }

  .section-line{
    width:62px;
    background:#5e8e63;
  }

  .services-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .service-card{
    height:205px;
    border-radius:22px;
    background:#1f221d !important;
    border:none !important;
    box-shadow:0 10px 20px rgba(0,0,0,.16) !important;
    background-image:none !important;
    transform:translateZ(0);
  }

  .service-card::before{
    content:"";
    position:absolute;
    inset:-2px;
    z-index:0;
    background-image:var(--img);
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
    filter:none;
    transform:scale(1.02);
  }

  .dren-card::before{
    background-position:center 5%;
  }

  .hellu-card::before{
    background-position:center 15%;
  }

  .service-overlay{
    display:none !important;
  }

  .service-card:hover{
    transform:translateZ(0);
    box-shadow:0 10px 20px rgba(0,0,0,.16) !important;
  }

  .service-content{
    left:10px;
    right:10px;
    bottom:10px;
    padding:13px 13px 12px;
    border-radius:18px;
    z-index:2;
    background:rgba(34,37,34,.58);
    border:1px solid rgba(255,255,255,.04);
    box-shadow:none;
    backdrop-filter:blur(2px);
    -webkit-backdrop-filter:blur(2px);
  }

  .service-content h3{
    margin:0 0 5px;
    font-size:16px;
    line-height:1.1;
    color:#f8f6f2;
    text-shadow:none;
  }

  .service-content p{
    margin:0 0 7px;
    font-size:12.5px;
    line-height:1.36;
    color:rgba(255,255,255,.88);
    font-weight:700;
    text-shadow:none;
  }

  .service-content span{
    font-size:12.5px;
    color:#d2f4d4;
    text-shadow:none;
  }

  .home-overview{
    margin-top:20px;
  }

  .overview-panel{
    grid-template-columns:1fr;
    gap:16px;
    padding:20px 16px;
    border-radius:22px;
    background:
      linear-gradient(180deg, rgba(46,49,45,.96) 0%, rgba(39,42,38,.96) 100%);
    border:1px solid rgba(255,255,255,.05);
    box-shadow:0 12px 24px rgba(0,0,0,.16);
  }

  .overview-panel::after{
    display:none;
  }

  .overview-copy h2{
    font-size:24px;
    line-height:1.04;
    color:#fff;
  }

  .overview-copy p{
    font-size:14.5px;
    line-height:1.58;
    color:var(--mobile-muted);
  }

  .overview-tags{
    gap:7px;
    margin-top:14px;
  }

  .overview-tags span{
    min-height:31px;
    padding:0 10px;
    background:rgba(136,181,139,.12);
    border:1px solid rgba(255,255,255,.05);
    color:#d2f4d4;
    font-size:11.5px;
  }

  .overview-side{
    grid-template-columns:1fr;
  }

  .overview-stat,
  .overview-mini{
    border-radius:18px;
    padding:15px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.05);
    box-shadow:none;
  }

  .overview-stat{
    min-height:auto;
    background:linear-gradient(180deg,#426f4c,#31563b);
  }

  .overview-stat strong{
    font-size:42px;
  }

  .overview-stat span{
    font-size:12.5px;
  }

  .overview-mini h3{
    font-size:14.5px;
    color:#fff;
  }

  .overview-mini p{
    font-size:12.8px;
    color:var(--mobile-muted);
  }

  .reasons{
    margin:28px 0 26px;
  }

  .reasons-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .reason-card{
    align-items:center;
    gap:12px;
    padding:14px 13px;
    border-radius:18px;
    background:linear-gradient(180deg, rgba(46,49,45,.96) 0%, rgba(39,42,38,.96) 100%);
    border:1px solid rgba(255,255,255,.05);
    box-shadow:0 12px 24px rgba(0,0,0,.16);
  }

  .reason-card:hover{
    transform:none;
  }

  .reason-icon{
    width:42px;
    height:42px;
    flex:0 0 42px;
    border-radius:14px;
    background:rgba(136,181,139,.12);
    color:#bce7c0;
    font-size:16px;
  }

  .reason-card h3{
    margin:0 0 4px;
    font-size:14.5px;
    line-height:1.2;
    color:#fff;
  }

  .reason-card p{
    font-size:12.5px;
    line-height:1.45;
    color:var(--mobile-muted);
  }

  .home-faq{
    margin:24px 0 24px;
  }

  .home-faq-grid{
    grid-template-columns:1fr;
    gap:10px;
  }

  .home-faq-item{
    padding:16px 14px 14px;
    border-radius:18px;
    background:linear-gradient(180deg, rgba(46,49,45,.96) 0%, rgba(39,42,38,.96) 100%);
    border:1px solid rgba(255,255,255,.05);
    box-shadow:0 12px 24px rgba(0,0,0,.16);
  }

  .home-faq-item::before{
    top:14px;
    bottom:14px;
    width:4px;
    background:#6f9a73;
  }

  .home-faq-item h3{
    font-size:15px;
    color:#fff;
  }

  .home-faq-item p{
    font-size:13.5px;
    line-height:1.55;
    color:var(--mobile-muted);
  }

  .cta{
    border-radius:22px;
    box-shadow:0 18px 34px rgba(0,0,0,.20);
    background:
      linear-gradient(180deg, rgba(18,20,18,.42), rgba(18,20,18,.52)),
      var(--cta, linear-gradient(180deg,#4c5952,#232d29));
    background-size:cover;
    background-position:center;
  }

  .cta-inner{
    padding:32px 14px;
  }

  .cta-inner h3{
    font-size:24px;
    line-height:1.12;
    color:#fff;
  }

  .cta-inner p{
    font-size:13.5px;
    line-height:1.55;
    color:rgba(255,255,255,.88);
  }

  .cta-inner .btn{
    width:100%;
    min-height:46px;
    font-size:15px;
    border-radius:16px;
    background:linear-gradient(180deg,#b9443e 0%, #a13631 100%);
    box-shadow:0 12px 26px rgba(161,54,49,.24);
  }

  .footer{
    background:linear-gradient(180deg,#131612 0%, #0d100d 100%);
  }

  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .footer-links{
    flex-direction:column;
    gap:10px;
    color:#f1efeb;
  }

  .footer-contact{
    flex-direction:column;
    align-items:flex-start;
    width:100%;
  }

  .footer-pill{
    width:100%;
    justify-content:flex-start;
    border-radius:14px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
    padding:9px 11px;
    font-size:14px;
  }

  .footer-copy{
    color:rgba(255,255,255,.56);
  }
}

@media (max-width: 640px){
  .container{
    width:min(var(--container), calc(100% - 24px));
  }

  .hero-title{
    font-size:clamp(28px, 8.2vw, 36px);
  }

  .hero-text{
    font-size:14px;
  }

  .contact-card{
    margin-top:26px;
    border-radius:24px;
  }

  .contact-card-inner{
    padding:18px 16px 16px;
  }

  .contact-form input,
  .contact-form textarea,
  .input,
  .textarea{
    font-size:16px;
  }

  .service-card{
    height:196px;
  }

  .service-content{
    left:9px;
    right:9px;
    bottom:9px;
    padding:12px 12px 11px;
  }

  .service-content h3{
    font-size:15px;
  }

  .service-content p,
  .service-content span{
    font-size:12px;
  }

  .overview-copy h2{
    font-size:23px;
  }

  .footer-copy{
    padding:0 0 16px;
    font-size:11.5px;
  }
}

@media (min-width: 1025px){
  :root{
    --container:1540px;
  }

  .container{
    width:min(var(--container), calc(100% - 56px));
  }

  .nav{
    height:64px;
    gap:24px;
  }

  .brand{
    height:64px;
  }

  .logo{
    height:38px;
  }

  .menu{
    gap:24px;
  }

  .menu a{
    font-size:14px;
    padding:7px 2px;
  }

  .nav-actions{
    gap:10px;
  }

  .btn{
    min-height:44px;
    padding:0 17px;
    font-size:15px;
  }

  .hero{
    min-height:585px;
  }

  .hero-bg{
    object-position:center 30%;
  }

  .hero-inner{
    grid-template-columns:minmax(0, 1.08fr) minmax(320px, 400px);
    gap:28px;
    padding:28px 0 22px;
    min-height:585px;
  }

  .hero-copy{
    max-width:560px;
  }

  .hero-title{
    font-size:clamp(38px, 4.4vw, 58px);
  }

  .hero-text{
    max-width:590px;
    font-size:16px;
    line-height:1.62;
  }

  .hero-actions{
    gap:12px;
    margin-top:20px;
  }

  .hero-trust{
    gap:9px;
    margin-top:16px;
  }

  .hero-trust span{
    font-size:12px;
    padding:7px 11px;
  }

  .contact-card{
    max-width:392px;
    border-radius:22px;
  }

  .contact-card-inner{
    padding:19px 19px 17px;
  }

  .contact-card h2{
    font-size:13px;
  }

  .card-line{
    width:56px;
    margin:10px 0 14px;
  }

  .contact-form .field{
    margin-bottom:11px;
  }

  .contact-form label{
    font-size:11.5px;
    margin-bottom:5px;
  }

  .contact-form input,
  .contact-form textarea,
  .input,
  .textarea{
    padding:10px 11px;
    border-radius:11px;
    font-size:13px;
  }

  .contact-form textarea,
  .textarea{
    min-height:70px;
  }

  .radio-row{
    gap:14px;
    margin:7px 0 12px;
    font-size:12.5px;
  }

  .contact-form small,
  .fine{
    margin-top:9px;
    font-size:11.5px;
  }

  .services-section{
    padding:28px 0 36px;
  }

  .services-grid{
    gap:16px;
  }

  .service-card{
    height:245px;
  }

  .service-content{
    padding:15px 15px 14px;
  }

  .service-content h3{
    font-size:16px;
    margin-bottom:5px;
  }

  .service-content p{
    font-size:11.8px;
    margin-bottom:8px;
  }

  .service-content span{
    font-size:11.8px;
  }

  .overview-panel{
    padding:28px;
  }

  .overview-copy h2{
    font-size:clamp(30px, 2.7vw, 42px);
  }

  .overview-copy p{
    font-size:15.7px;
    line-height:1.66;
  }

  .reasons{
    margin:34px 0 30px;
  }

  .reasons-grid{
    gap:12px;
  }

  .reason-card{
    padding:15px;
    gap:10px;
    border-radius:18px;
  }

  .reason-icon{
    width:44px;
    height:44px;
    flex:0 0 44px;
    border-radius:13px;
  }

  .reason-card h3{
    font-size:13.5px;
  }

  .reason-card p{
    font-size:12px;
  }

  .home-faq{
    margin:28px 0 28px;
  }

  .home-faq-grid{
    gap:12px;
  }

  .home-faq-item{
    padding:18px 18px 16px;
  }

  .home-faq-item h3{
    font-size:15.5px;
  }

  .home-faq-item p{
    font-size:13.8px;
  }

  .cta{
    border-radius:26px;
  }

  .cta-inner{
    padding:52px 18px;
    max-width:680px;
  }

  .cta-inner h3{
    font-size:34px;
  }

  .cta-inner p{
    font-size:15px;
    margin-bottom:18px;
  }

  .footer-inner{
    padding:17px 0 11px;
  }

  .footer-links{
    gap:14px;
    font-size:14px;
  }

  .footer-pill{
    font-size:14px;
    padding:7px 11px;
  }

  .footer-copy{
    font-size:11.5px;
    padding:0 0 16px;
  }
}