:root{
  --green:#169233;
  --dark:#07120b;
  --muted:#647067;
  --line:#e8eee9;
  --soft:#f6faf7;
  --shadow:0 20px 50px rgba(3,31,12,.12);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,sans-serif;
  color:var(--dark);
  background:#fff;
}
a{text-decoration:none;color:inherit}

.nav{
  height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 7%;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:100;
}
.brand{display:flex;align-items:center;gap:12px}
.logo{
  width:44px;height:44px;border-radius:14px;
  background:linear-gradient(135deg,var(--green),#47c363);
  color:white;display:grid;place-items:center;
  font-size:31px;font-weight:900;
}
.brand strong{font-size:22px;display:block}
.brand small{font-size:12px;color:var(--muted)}
.nav-links{display:flex;gap:36px;font-weight:700;font-size:14px}
.nav-links a:hover{color:var(--green)}
.whatsapp,.btn.primary{
  background:var(--green);color:white;
  padding:14px 22px;border-radius:9px;
  font-weight:800;box-shadow:0 12px 28px rgba(22,146,51,.25);
}
.hero{
  min-height:620px;
  position:relative;
  display:flex;
  align-items:center;
  padding:0 7%;
  background:
    linear-gradient(90deg,rgba(2,11,5,.82),rgba(2,11,5,.42),rgba(2,11,5,.05)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=85") center/cover;
}
.hero-content{position:relative;max-width:680px;color:#fff}
.eyebrow{
  color:var(--green);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
  margin-bottom:12px;
}
.hero h1{font-size:60px;line-height:1.05;margin-bottom:24px;letter-spacing:-2px}
.hero-text{font-size:20px;line-height:1.7;max-width:560px;color:#eef5ef}
.hero-actions{display:flex;gap:16px;margin-top:34px}
.btn{display:inline-flex;align-items:center;justify-content:center}
.btn.ghost{
  color:white;border:2px solid rgba(255,255,255,.85);
  padding:13px 26px;border-radius:9px;font-weight:800;
}
.trust-panel{
  width:min(1080px,86%);
  margin:-54px auto 0;
  background:white;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
  border-radius:12px;
  position:relative;
  z-index:5;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  overflow:hidden;
}
.trust-panel div{
  padding:28px 34px;
  border-right:1px solid var(--line);
  display:grid;
  grid-template-columns:56px 1fr;
  gap:8px 18px;
}
.trust-panel div:last-child{border-right:none}
.trust-panel span{grid-row:span 2;color:var(--green);font-size:45px}
.trust-panel h3{font-size:18px}
.trust-panel p{color:var(--muted);font-size:14px;line-height:1.6}
.section{padding:78px 7% 46px}
.section-head{text-align:center;margin-bottom:34px}
.section-head h2,.about h2,.contact h2{font-size:40px;letter-spacing:-1px}
.section-head p{color:var(--muted);margin-top:10px}
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.card{
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 14px 35px rgba(0,0,0,.08);
  transition:.3s ease;
  background:white;
}
.card:hover{transform:translateY(-8px);box-shadow:0 24px 60px rgba(0,0,0,.13)}
.image{
  height:235px;
  background-size:cover;
  background-position:center;
  position:relative;
}
.image span{
  position:absolute;top:14px;left:14px;
  background:var(--green);color:white;
  font-weight:900;font-size:12px;
  padding:7px 12px;border-radius:6px;
}
.img1{background-image:url("https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=1000&q=85")}
.img2{background-image:url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1000&q=85")}
.img3{background-image:url("https://images.unsplash.com/photo-1605146769289-440113cc3d00?auto=format&fit=crop&w=1000&q=85")}
.img4{background-image:url("https://images.unsplash.com/photo-1598228723793-52759bba239c?auto=format&fit=crop&w=1000&q=85")}
.img5{background-image:url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1000&q=85")}
.img6{background-image:url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1000&q=85")}

.card-body{padding:22px}
.card h3{font-size:28px;color:var(--green)}
.card h4{font-size:18px;margin:4px 0}
.address{font-size:13px;color:var(--muted);padding-bottom:18px;border-bottom:1px solid var(--line)}
.card ul{list-style:none;padding:14px 0 18px;display:grid;gap:12px}
.card li{display:flex;justify-content:space-between;gap:15px;font-size:13px}
.card li span{text-align:right}
.card-actions{display:grid;grid-template-columns:1fr 56px;gap:14px}
.details{
  background:#f3f4f3;border:1px solid #ddd;
  display:grid;place-items:center;border-radius:7px;
  font-weight:800;font-size:13px;
}
.mini-wa{
  background:var(--green);color:white;
  display:grid;place-items:center;border-radius:7px;
  font-size:22px;font-weight:900;
}
.steps{
  padding:54px 7%;
  background:linear-gradient(135deg,#f2faf4,#fff);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.step span{
  width:48px;height:48px;border-radius:14px;
  background:var(--green);color:white;
  display:grid;place-items:center;
  font-weight:900;margin-bottom:16px;
}
.step h3{font-size:18px;margin-bottom:8px}
.step p{color:var(--muted);line-height:1.7;font-size:14px}
.about{
  padding:80px 7%;
  display:grid;
  grid-template-columns:1.5fr .8fr;
  gap:34px;
  align-items:center;
}
.about p{color:var(--muted);line-height:1.8;margin-top:16px}
.about-card{
  border-radius:22px;
  padding:34px;
  background:var(--dark);
  color:white;
  box-shadow:var(--shadow);
}
.about-card strong{font-size:38px;color:#6ee486;display:block;margin:14px 0}
.contact{
  margin:0 7% 60px;
  padding:42px;
  border-radius:22px;
  background:linear-gradient(135deg,#07120b,#123d1c);
  color:white;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}
.contact p{color:#dfeee2;margin-top:8px}
footer{
  text-align:center;
  padding:28px;
  color:var(--muted);
  border-top:1px solid var(--line);
  font-size:13px;
}

@media(max-width:980px){
  .nav{padding:0 5%}
  .nav-links{display:none}
  .hero h1{font-size:44px}
  .trust-panel,.grid,.steps,.about{grid-template-columns:1fr}
  .trust-panel div{border-right:none;border-bottom:1px solid var(--line)}
  .contact{flex-direction:column;text-align:center;align-items:flex-start}
}
@media(max-width:560px){
  .nav{height:auto;padding:16px 5%;gap:12px}
  .brand strong{font-size:17px}
  .whatsapp{padding:11px 13px;font-size:12px}
  .hero{min-height:560px;padding:0 5%}
  .hero h1{font-size:36px}
  .hero-text{font-size:16px}
  .hero-actions{flex-direction:column;align-items:flex-start}
  .section,.steps,.about{padding-left:5%;padding-right:5%}
  .section-head h2,.about h2,.contact h2{font-size:30px}
  .grid{gap:22px}
  .contact{margin-left:5%;margin-right:5%;padding:28px}
}
