:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --green:#1f5e4a;
  --green2:#2f7a61;
  --green3:#0f3e33;
  --wa:#f59e0b;
  --card:#f7faf8;
  --border:rgba(15,23,42,.08);
  --shadow:0 10px 30px rgba(15,23,42,.08);
  --radius:14px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
}
a{color:inherit}
img{max-width:100%;display:block}
.container{width:min(1120px, 92vw); margin-inline:auto}

/* HEADER */
.header{
  position:sticky; top:0; z-index:50;
  background:#fff;
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand__logo{height:38px; width:auto}
.header__actions{display:flex; gap:12px; align-items:center}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 16px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  border:1px solid var(--border);
  box-shadow:0 4px 14px rgba(15,23,42,.06);
}
.pill__icon{font-size:16px; line-height:1}
.pill--wa{background:var(--wa); color:#fff; border-color:transparent}
.pill--offer{background:#eaf3ee; color:var(--green); border-color:transparent}

.burger{
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  display:grid; place-items:center;
  cursor:pointer;
}
.burger span{display:block; width:18px; height:2px; background:#0f172a; margin:2px 0; border-radius:2px}

.mobile-nav{
  display:none;
  border-top:1px solid var(--border);
  padding:12px 0;
}
.mobile-nav a{
  display:block;
  padding:10px 4vw;
  text-decoration:none;
  color:#0f172a;
  font-weight:650;
}
.mobile-nav a:hover{background:#f4f6f8}
.header.is-open .mobile-nav{display:block}

/* HERO */
.hero{
  position:relative;
  min-height:76vh;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0; z-index:0;
}
.hero__bg img{
  width:100%; height:100%; object-fit:cover; object-position:center;
  transform:scale(1.02);
}
.hero__overlay{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(90deg,
    rgba(16,72,56,.92) 0%,
    rgba(31,94,74,.86) 45%,
    rgba(31,94,74,.35) 100%
  );
}
.hero__content{
  position:relative; z-index:2;
  padding:84px 0 54px;
  max-width:860px;
}
.hero h1{
  margin:0 0 18px;
  color:#fff;
  font-size: clamp(30px, 4.2vw, 62px);
  font-weight:900;
  line-height:1.04;
  letter-spacing:-0.02em;
}
.hero__sub{
  color:rgba(255,255,255,.86);
  font-size:16px;
  line-height:1.55;
  max-width:720px;
  margin:0 0 26px;
}
.hero__cta{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  border:1px solid transparent;
  box-shadow:0 10px 22px rgba(15,23,42,.12);
}
.btn--wa{background:var(--wa); color:#fff}
.btn--light{background:#f4f6f8; color:var(--green); border-color:rgba(255,255,255,.35)}
.btn--ghost{background:#fff; color:#0f172a; border-color:var(--border); box-shadow:none}
.btn--primary{background:var(--green); color:#fff}
.btn--full{width:100%}
.arrow{font-weight:900}

.hero__checks{
  margin-top:18px;
  display:flex; gap:18px; flex-wrap:wrap;
  color:rgba(255,255,255,.9);
  font-weight:650;
  font-size:14px;
}

/* TRUST */
.trust{padding:24px 0 6px; background:#fff}
.trust__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}
.trust-card{
  background:#f3f7f4;
  border:1px solid rgba(15,23,42,.06);
  border-radius:14px;
  padding:14px;
  display:flex; gap:12px; align-items:flex-start;
}
.trust-card__icon{
  width:34px; height:34px; border-radius:10px;
  background:rgba(31,94,74,.12);
  display:grid; place-items:center;
  color:var(--green);
  font-weight:900;
}
.trust-card__title{font-weight:900}
.trust-card__text{font-size:13px}

/* SECTIONS */
.section{padding:58px 0}
.section--alt{background:#f6faf8}
.section__title{
  text-align:center;
  margin:0 0 10px;
  font-size:28px;
  font-weight:900;
  letter-spacing:-0.01em;
}
.section__sub{text-align:center; margin:0 0 26px}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.service-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.service-card img{height:170px; width:100%; object-fit:cover}
.service-card__body{padding:16px}
.service-card h3{margin:0 0 6px; font-size:18px; font-weight:900}
.service-card ul{margin:12px 0 0; padding-left:18px; color:#334155}
.service-card li{margin:6px 0; font-size:13.5px}

/* PROCESS */
.steps{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
  margin-top:18px;
}
.step{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
  text-align:center;
}
.step__dot{
  width:44px; height:44px;
  border-radius:999px;
  background:rgba(31,94,74,.12);
  color:var(--green);
  display:grid; place-items:center;
  font-weight:900;
  margin:0 auto 10px;
}
.step h3{margin:0 0 6px; font-weight:900}
.step p{margin:0; font-size:14px}

/* AREAS */
.areas{
  background:linear-gradient(180deg, #1f5e4a, #164c3c);
  color:#fff;
  padding:64px 0;
}
.areas__inner{text-align:center}
.areas__badge{
  width:48px; height:48px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  display:grid; place-items:center;
  margin:0 auto 10px;
}
.areas h2{margin:0 0 8px; font-size:26px; font-weight:900}
.chips{display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-top:18px}
.chip{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#fff;
  padding:10px 14px;
  border-radius:12px;
  font-weight:750;
}
.areas__hint{margin-top:10px}

/* FAQ */
.faq{max-width:860px; margin:0 auto}
.faq-item{
  border:1px solid var(--border);
  background:#fff;
  border-radius:14px;
  margin:10px 0;
  overflow:hidden;
  box-shadow:0 8px 18px rgba(15,23,42,.05);
}
.faq-q{
  width:100%;
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 16px;
  background:#fff;
  border:0;
  cursor:pointer;
  font-weight:900;
  text-align:left;
}
.faq-plus{font-size:20px; line-height:1; opacity:.7}
.faq-a{padding:0 16px 16px}
.faq-a p{margin:0; color:#334155; line-height:1.6}

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:18px;
  align-items:start;
  margin-top:18px;
}
.contact{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.field{margin-bottom:14px}
label{display:block; font-weight:800; margin-bottom:8px; font-size:13px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.12);
  font:inherit;
  background:#fff;
}
textarea{resize:vertical}
.checkgrid{
  display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:12px;
}
.checkgroup{
  border:1px solid rgba(15,23,42,.08);
  background:#f7faf8;
  border-radius:14px;
  padding:12px;
}
.checkgroup__title{font-weight:900; margin-bottom:8px}
.checkgroup label{font-weight:650; margin:8px 0 0; display:flex; gap:8px; align-items:flex-start}
.checkgroup input{width:16px; height:16px; margin-top:2px}
.consent{display:flex; gap:10px; align-items:flex-start; font-weight:650; margin:10px 0 14px}
.consent input{width:18px; height:18px; margin-top:2px}
.form-note{margin:10px 0 0}
.hp{position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden}

.sidebar__card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
}
.sidebar__card h3{margin:0 0 10px; font-weight:900}
.side-link{display:block; padding:10px 12px; border-radius:12px; text-decoration:none; border:1px solid rgba(15,23,42,.08); margin:10px 0}
.side-sep{height:1px; background:var(--border); margin:14px 0}

/* FOOTER */
.footer{
  background:#0b2a22;
  color:#fff;
  padding:46px 0 18px;
}
.footer__grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:18px;
}
.footer__logo{height:38px; width:auto; margin-bottom:10px}
.footer a{color:#fff; text-decoration:none; opacity:.9}
.footer a:hover{opacity:1; text-decoration:underline}
.footer__contact a, .footer__contact span{display:block; margin:8px 0; opacity:.92}
.footer__col h4{margin:0 0 10px; font-weight:900}
.footer__bottom{border-top:1px solid rgba(255,255,255,.14); margin-top:18px; padding-top:14px; opacity:.9}

/* FLOAT + COOKIE */
.float{
  position:fixed; right:18px; bottom:18px;
  display:flex; flex-direction:column; gap:10px;
  z-index:60;
}
.float__wa, .float__offer{
  width:52px; height:52px;
  border-radius:999px;
  display:grid; place-items:center;
  box-shadow:0 12px 26px rgba(15,23,42,.22);
  text-decoration:none;
  font-weight:900;
}
.float__wa{background:#25D366; color:#fff}
.float__offer{
  width:auto; height:auto;
  padding:12px 14px;
  border-radius:14px;
  background:var(--wa);
  color:#fff;
}

.cookie{
  position:fixed; left:16px; right:16px; bottom:16px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 18px 40px rgba(15,23,42,.16);
  padding:14px;
  display:none;
  z-index:70;
}
.cookie.is-open{display:flex; gap:14px; align-items:center; justify-content:space-between}
.cookie__text{display:flex; flex-direction:column; gap:4px}
.cookie__text a{color:var(--green); font-weight:800; text-decoration:none}
.cookie__actions{display:flex; gap:10px; align-items:center}

/* LEGAL */
.legal{padding:48px 0}
.legal__inner{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
}

/* Utilities */
.muted{color:var(--muted)}

/* RESPONSIVE */
@media (max-width: 980px){
  .trust__grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .services-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .steps{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .checkgrid{grid-template-columns:1fr}
}
@media (max-width: 680px){
  .header__actions .pill--offer{display:none}
  .hero__content{padding:62px 0 44px}
  .services-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
}
