:root{
  --bg:#07110d;
  --panel:#101d17;
  --panel2:#f7f7f2;
  --text:#f5fff8;
  --dark:#152019;
  --muted:#d8e5db;
  --body:#26352c;
  --green:#39ff14;
  --green2:#28c70d;
  --border:rgba(57,255,20,.35);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#f7f7f2;
  color:var(--body);
  line-height:1.65;
}
a{color:inherit}
.topbar{
  background:var(--green);
  color:#061006;
  text-align:center;
  font-weight:900;
  font-size:22px;
  padding:10px 16px;
}
.site-header{
  background:#101d17;
  color:#fff;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:10;
}
.nav{
  max-width:1180px;
  margin:0 auto;
  padding:16px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.logo{
  font-size:26px;
  font-weight:900;
  text-decoration:none;
  color:#fff;
}
.logo span{color:var(--green)}
.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.nav-links a{
  text-decoration:none;
  font-weight:800;
  font-size:15px;
}
.btn{
  display:inline-block;
  background:var(--green);
  color:#061006!important;
  padding:13px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  border:2px solid var(--green);
}
.btn.secondary{
  background:transparent;
  color:#fff!important;
}
.hero{
  background:
    linear-gradient(135deg, rgba(7,17,13,.94), rgba(16,29,23,.88)),
    radial-gradient(circle at top right, rgba(57,255,20,.25), transparent 32%);
  color:var(--text);
  padding:74px 20px 56px;
}
.wrap{
  max-width:1180px;
  margin:0 auto;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:34px;
  align-items:center;
}
.eyebrow{
  color:var(--green);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin:0 0 10px;
}
h1{
  font-size:clamp(36px, 6vw, 66px);
  line-height:1.04;
  margin:0 0 18px;
}
.hero p{
  font-size:20px;
  color:var(--muted);
  margin:0 0 24px;
  max-width:760px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.hero-card{
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  border-radius:24px;
  padding:26px;
  box-shadow:0 16px 50px rgba(0,0,0,.25);
}
.hero-card h2{margin-top:0;color:#fff}
.checks{
  list-style:none;
  padding:0;
  margin:0;
}
.checks li{
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
  font-weight:800;
}
.checks li:last-child{border-bottom:0}
.checks li:before{
  content:"✓";
  color:var(--green);
  margin-right:10px;
}
.trust{
  background:#fff;
  border-bottom:1px solid #e1e5df;
}
.trust-grid{
  max-width:1180px;
  margin:0 auto;
  padding:18px 20px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
  text-align:center;
  font-weight:900;
  color:#142018;
}
.section{
  padding:54px 20px;
}
.section.dark{
  background:#101d17;
  color:#f5fff8;
}
.section h2{
  font-size:clamp(30px, 4vw, 44px);
  line-height:1.12;
  margin:0 0 14px;
  color:inherit;
}
.lead{
  font-size:19px;
  color:#536258;
  max-width:900px;
}
.dark .lead{color:#d8e5db}
.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:26px;
}
.grid2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-top:26px;
}
.card{
  background:#fff;
  border:1px solid #e1e5df;
  border-radius:22px;
  padding:24px;
  box-shadow:0 10px 35px rgba(20,32,24,.08);
}
.dark .card{
  background:rgba(255,255,255,.06);
  border-color:var(--border);
}
.card h3{
  margin:0 0 10px;
  font-size:24px;
  color:#132018;
}
.dark .card h3{color:#fff}
.card p{margin:0;color:#536258}
.dark .card p{color:#d8e5db}
.location-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}
.pill{
  border:1px solid #cfd8cf;
  background:#fff;
  border-radius:999px;
  padding:10px 15px;
  font-weight:900;
}
.property-card a{
  margin-top:16px;
}
.faq details{
  background:#fff;
  border:1px solid #e1e5df;
  border-radius:18px;
  padding:18px;
  margin:12px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:900;
  color:#142018;
}
.cta{
  background:var(--green);
  color:#061006;
  padding:48px 20px;
}
.cta .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.cta h2{margin:0;font-size:34px}
.cta p{margin:6px 0 0;font-weight:800}
.cta .btn{
  background:#101d17;
  color:#fff!important;
  border-color:#101d17;
}
.footer{
  background:#07110d;
  color:#d8e5db;
  padding:32px 20px;
}
.footer a{color:#fff}
.mobile-sticky{display:none}
@media(max-width:850px){
  .hero-grid,.grid3,.grid2,.trust-grid{grid-template-columns:1fr}
  .nav{align-items:flex-start;flex-direction:column}
  .nav-links{gap:12px}
  .hero{padding-top:46px}
  .mobile-sticky{
    display:block;
    position:fixed;
    left:0;right:0;bottom:0;
    padding:10px 14px;
    background:#101d17;
    border-top:1px solid var(--border);
    z-index:50;
  }
  .mobile-sticky .btn{
    display:block;
    text-align:center;
  }
  body{padding-bottom:72px}
}
