:root{
  --bg:#0b0f0d;
  --surface:#0f1512;
  --card:#121b16;
  --soft:#0f1411;
  --text:#eaf3ee;
  --muted:#a8b7ae;
  --line:rgba(255,255,255,.10);
  --green:#0b4d2b;
  --green2:#0f6b3a;
  --accent:#2bd67b;
  --shadow: 0 14px 35px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 10% -10%, rgba(43,214,123,.25), transparent 55%),
              radial-gradient(900px 600px at 90% 0%, rgba(15,107,58,.35), transparent 50%),
              linear-gradient(180deg, #070a08, #0b0f0d);
  color:var(--text);
  line-height:1.6;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.9}
img{max-width:100%; display:block}

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

.header{
  position:sticky; top:0; z-index:20;
  background: rgba(7,10,8,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:12px; min-width:220px}
.brand__logo{
  width:140px; height:auto; border-radius:0;
  background:#fff; padding:0; object-fit:contain;
  border: 1px solid rgba(255,255,255,.15);
}
.brand__name{font-weight:800; letter-spacing:.4px; font-size:14px}
.brand__tagline{font-size:12px; color:var(--muted); margin-top:2px}

.nav{display:flex; align-items:center; gap:14px}
.nav__link{
  font-size:14px; color:var(--muted);
  padding:8px 10px; border-radius:12px;
}
.nav__link:hover{background: rgba(255,255,255,.06); color:var(--text)}
.nav__link.is-active{background: rgba(43,214,123,.10); color:var(--text); border: 1px solid rgba(43,214,123,.20)}

.navToggle{
  display:none;
  width:44px; height:40px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  align-items:center; justify-content:center;
  gap:5px; flex-direction:column;
}
.navToggle span{width:18px; height:2px; background: var(--text); opacity:.85; border-radius:999px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  background: linear-gradient(180deg, var(--green2), var(--green));
  color: var(--text);
  padding:12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(43,214,123,.18);
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
  font-weight:700;
}
.btn:hover{transform: translateY(-1px)}
.btn--outline{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:none;
}
.btn--small{padding:10px 12px; border-radius:12px; font-size:14px}

.hero{padding:42px 0 18px}
.hero__grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:26px; align-items:start}
.hero__content h1{font-size:44px; line-height:1.1; margin:12px 0 10px}
.lead{font-size:18px; color:var(--text); opacity:.92; margin:0 0 18px}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 20px}

.trustRow{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:16px}
.trustCard{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
}
.trustCard__title{font-weight:800; margin-bottom:4px}

.hero__media{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
  box-shadow: var(--shadow);
}
.mediaGrid{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
.mediaGrid img{
  width:100%; height:160px; object-fit:cover;
  border-radius:16px; border: 1px solid rgba(255,255,255,.10);
}

.caption{font-size:12px; margin-top:10px}
.muted{color:var(--muted)}

.section{padding:34px 0}
.section--soft{background: rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.sectionHead{margin-bottom:16px}
.sectionHead h2{margin:0 0 6px; font-size:28px}
.sectionHead p{margin:0}

.cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.card{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 8px; font-size:18px}
.card--highlight{
  border:1px solid rgba(43,214,123,.22);
  background: radial-gradient(800px 350px at 0% 0%, rgba(43,214,123,.18), transparent 65%),
              rgba(255,255,255,.04);
}
.list{margin:10px 0 0; padding-left:18px}
.list li{margin:6px 0}
.list--checks{list-style:none; padding-left:0}
.list--checks li{
  padding-left:30px; position:relative; margin:10px 0;
}
.list--checks li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  width:22px; height:22px; display:inline-flex; align-items:center; justify-content:center;
  border-radius:999px;
  background: rgba(43,214,123,.10);
  border:1px solid rgba(43,214,123,.22);
  color: var(--accent);
  font-weight:900;
}

.link{display:inline-block; margin-top:12px; color: var(--accent); font-weight:800}

.miniGrid{display:grid; grid-template-columns: 1fr; gap:10px; margin:12px 0 14px}
.miniStat{background: rgba(0,0,0,.18); border:1px solid var(--line); border-radius:16px; padding:12px}
.miniStat__big{font-weight:900; margin-bottom:4px}

.pillGrid{display:flex; flex-wrap:wrap; gap:10px}
.pill{
  border-radius:999px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-size:14px;
}
.pillGrid--compact .pill{font-size:13px; padding:7px 10px}

.ctaPanel{
  display:flex; justify-content:space-between; align-items:center;
  gap:16px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(43,214,123,.22);
  background: radial-gradient(900px 250px at 0% 0%, rgba(43,214,123,.20), transparent 65%),
              rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.ctaPanel h2{margin:0 0 6px}
.ctaPanel p{margin:0}
.ctaPanel__actions{display:flex; gap:10px; flex-wrap:wrap}

.pageHero{padding:30px 0 8px}
.pageHero h1{margin:0 0 8px; font-size:40px}
.twoCol{display:grid; grid-template-columns: 1.15fr .85fr; gap:18px; align-items:start}

.sideCard{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  position:sticky; top:88px;
}
.hr{border:none; height:1px; background: var(--line); margin:14px 0}

.note{
  margin-top:14px;
  background: rgba(43,214,123,.08);
  border:1px solid rgba(43,214,123,.18);
  border-radius: 16px;
  padding:12px;
}
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.gallery img{
  width:100%; height:210px; object-fit:cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}

.principles{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin:10px 0 14px}
.principle{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: 18px;
  padding:14px;
}
.quote{
  margin-top:14px;
  border-left: 4px solid rgba(43,214,123,.45);
  padding:12px 14px;
  background: rgba(255,255,255,.03);
  border-radius: 14px;
}
.miniGallery{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.miniGallery img{height:120px; object-fit:cover; border-radius:16px; border: 1px solid rgba(255,255,255,.12)}

.form{margin-top:10px}
.formRow{display:flex; flex-direction:column; gap:6px; margin:12px 0}
label{font-weight:800; font-size:14px}
input, select, textarea{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding:12px 12px;
  color: var(--text);
  font-size:15px;
  outline:none;
}
input:focus, select:focus, textarea:focus{border-color: rgba(43,214,123,.35)}
.formActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.mapWrap{
  border-radius: 18px; overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.mapWrap iframe{width:100%; height:260px; border:0}

.footer{
  margin-top:26px;
  padding:26px 0;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.25);
}
.footer__grid{display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap:16px}
.footer__title{font-weight:900; margin-bottom:8px}
.footer__badges{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
}
.footer__bottom{padding-top:14px}

@media (max-width: 960px){
  .hero__grid, .twoCol{grid-template-columns: 1fr}
  .sideCard{position:relative; top:auto}
  .cards{grid-template-columns:1fr}
  .trustRow{grid-template-columns:1fr}
  .principles{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr 1fr}
  .footer__grid{grid-template-columns:1fr}
  .hero__content h1{font-size:36px}
  .mediaGrid img{height:150px}
}

@media (max-width: 720px){
  .navToggle{display:flex}
  .nav{
    position:fixed; left:16px; right:16px; top:74px;
    background: rgba(7,10,8,.96);
    border:1px solid var(--line);
    border-radius: 18px;
    padding:12px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    box-shadow: var(--shadow);
  }
  body.nav-open .nav{display:flex}
  .nav__link{padding:12px 12px}
  .brand__text{display:none}
  .gallery{grid-template-columns:1fr}
}

/* Floating WhatsApp button */
.waFloat{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green2), var(--green));
  border: 1px solid rgba(43,214,123,.20);
  box-shadow: var(--shadow);
}
.waFloat__icon{
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}
.waFloat__text{
  font-weight: 900;
  letter-spacing: .2px;
}
@media (max-width: 520px){
  .waFloat__text{display:none}
  .waFloat{padding: 12px}
}
