:root{
  --bg:#f4f8f3;
  --surface:#ffffff;
  --surface-2:#eef8ef;
  --green-soft:#dff3e3;
  --text:#142014;
  --muted:#5f6d60;
  --line:rgba(10,60,18,.12);
  --green:#12912f;
  --green-dark:#0a6a1f;
  --shadow:0 20px 50px rgba(10,32,12,.10);
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:16px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter', Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(18,145,47,.10), transparent 28%),
    linear-gradient(180deg,#f4f8f3 0%, #ffffff 100%);
  line-height:1.6;
}
img{max-width:100%;display:block;height:auto}
a{color:inherit}
.container{width:min(calc(100% - 28px), var(--max));margin:0 auto}

.topbar{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand img{
  width:min(56vw, 270px);
  max-width:270px;
  height:auto;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:8px;
}
.nav-links a{
  text-decoration:none;
  font-weight:700;
  font-size:.95rem;
  padding:10px 14px;
  border-radius:999px;
  transition:.2s ease;
}
.nav-links a:hover{background:var(--surface-2)}
.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  cursor:pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after{
  content:"";
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  margin:5px auto;
  transition:.2s ease;
}
.mobile-menu{
  display:none;
  padding:0 0 18px;
}
.mobile-menu.open{display:block}
.mobile-menu a{
  display:block;
  text-decoration:none;
  font-weight:700;
  padding:12px 14px;
  border-radius:14px;
}
.mobile-menu a:hover{background:var(--surface-2)}

.hero{padding:34px 0 20px}
.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  align-items:stretch;
}
.hero-copy,
.services-box,
.why-box,
.quote-box,
.contact-box{
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius-xl);
}
.hero-copy{
  padding:clamp(32px,5vw,64px);
  position:relative;
  overflow:hidden;
  min-height:100%;
}
.hero-copy::after{
  content:"";
  position:absolute;
  right:-55px;
  bottom:-55px;
  width:220px;
  height:220px;
  background:radial-gradient(circle, rgba(18,145,47,.15), rgba(18,145,47,0));
  pointer-events:none;
}
.hero-logo-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  margin:0 0 30px;
}
.hero-logo{
  width:min(100%, 420px);
  max-width:420px;
  height:auto;
  opacity:1;
  pointer-events:none;
  user-select:none;
}
.hero-content{
  max-width:1000px;
  margin:0 auto;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--green-soft);
  color:var(--green-dark);
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 6px rgba(18,145,47,.12);
  animation:pulse 1.8s infinite;
}
h1,h2,h3{
  font-family:'Montserrat', Arial, sans-serif;
  line-height:1.05;
  margin:0;
}
h1{
  font-size:clamp(2.4rem,5.2vw,5.2rem);
  margin-bottom:18px;
  max-width:16ch;
  text-wrap:balance;
}
.lead{
  color:var(--muted);
  font-size:clamp(1rem,1.4vw,1.14rem);
  max-width:78ch;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}
.btn{
  min-height:50px;
  padding:0 20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  transition:.2s ease;
  border:1px solid transparent;
}
.btn-primary{background:var(--green);color:#fff}
.btn-primary:hover{background:var(--green-dark);transform:translateY(-1px)}
.btn-secondary{background:#fff;border-color:var(--line)}
.btn-secondary:hover{background:var(--surface-2)}

.block{padding:18px 0}
.services-box,
.why-box,
.quote-box,
.contact-box{padding:clamp(24px,4vw,42px)}
.section-head{margin-bottom:20px}
.section-head h2{
  font-size:clamp(1.7rem,3vw,2.6rem);
  margin-bottom:8px;
}
.section-head p{
  margin:0;
  color:var(--muted);
  max-width:70ch;
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.service-card{
  background:linear-gradient(180deg,#fff 0%, #f7fbf7 100%);
  border:1px solid var(--line);
  border-radius:20px;
  padding:20px;
  transform:translateY(14px);
  opacity:0;
  transition:opacity .6s ease, transform .6s ease, box-shadow .25s ease;
}
.service-card.visible{opacity:1;transform:translateY(0)}
.service-card:hover{box-shadow:0 18px 32px rgba(10,34,12,.08)}
.icon-badge{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:15px;
  background:var(--green-soft);
  color:var(--green-dark);
  font-size:1.4rem;
  margin-bottom:14px;
}
.service-card h3{
  font-size:1.18rem;
  margin-bottom:8px;
}
.service-card p{
  margin:0;
  color:var(--muted);
  font-size:.98rem;
}
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.why-item{
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  background:#fff;
}
.why-item strong{
  display:block;
  margin-bottom:6px;
  font-family:'Montserrat', Arial, sans-serif;
}
.split{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
}
.quote-list{
  margin:16px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.quote-list li + li{margin-top:8px}
.invoice-note{
  margin-top:18px;
  background:var(--surface-2);
  border:1px dashed rgba(18,145,47,.32);
  border-radius:16px;
  padding:15px 16px;
  font-weight:800;
  color:var(--green-dark);
}
.feedback{
  margin-bottom:16px;
  padding:14px 16px;
  border-radius:14px;
  font-weight:700;
}
.feedback.ok{
  background:#e5f7e8;
  color:#0d6a20;
  border:1px solid rgba(13,106,32,.18);
}
.feedback.bad{
  background:#fff1f1;
  color:#9a2d2d;
  border:1px solid rgba(154,45,45,.18);
}
form{display:grid;gap:14px}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
label{
  display:grid;
  gap:8px;
  font-weight:700;
  font-size:.96rem;
}
input,select,textarea{
  width:100%;
  border:1px solid rgba(10,60,18,.14);
  background:#fff;
  border-radius:14px;
  padding:14px 15px;
  font:inherit;
  color:var(--text);
}
input:focus,select:focus,textarea:focus{
  outline:none;
  border-color:var(--green);
  box-shadow:0 0 0 4px rgba(18,145,47,.14);
}
textarea{min-height:130px;resize:vertical}
.captcha{
  display:grid;
  gap:10px;
  background:#f9fcf9;
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
}
.captcha strong{color:var(--green-dark)}
footer{
  text-align:center;
  color:var(--muted);
  padding:28px 0 110px;
}
.floating-social{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:120;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.social-btn{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  text-decoration:none;
  box-shadow:0 16px 30px rgba(0,0,0,.18);
  transition:.2s ease;
}
.social-btn:hover{transform:translateY(-2px) scale(1.04)}
.social-btn svg{
  width:24px;
  height:24px;
  fill:currentColor;
}
.wa{background:#25D366}
.fb{background:#1877F2}
.ig{background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045)}
@keyframes pulse{
  0%{transform:scale(1)}
  70%{transform:scale(1.06)}
  100%{transform:scale(1)}
}
@media (max-width: 980px){
  .services-grid,
  .why-grid,
  .grid-2,
  .split{
    grid-template-columns:1fr;
  }
  .nav-links{display:none}
  .menu-toggle{display:block}
  .hero-content{
    max-width:100%;
  }
  h1{
    max-width:14ch;
  }
}
@media (max-width: 640px){
  .topbar{position:static}
  .hero-logo{
    width:min(100%, 300px);
    max-width:300px;
  }
  .container{width:min(calc(100% - 20px), var(--max))}
  .hero{padding-top:20px}
  .social-btn{width:52px;height:52px}
  footer{padding-bottom:96px}
  h1{
    font-size:clamp(2rem,9vw,3.2rem);
    max-width:100%;
  }
  .lead{
    max-width:100%;
  }
}