:root{
  --bg:#0b0f0d;
  --surface:#101614;
  --surface2:#0f1412;
  --text:#f3f5f4;
  --muted:#c9d2cd;
  --brand:#4a5f3a;   /* olive green from logo */
  --accent:#b85c5d;  /* soft red from "BUILDERS" */
  --line:rgba(255,255,255,.12);
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius:18px;
  --max:1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 15% 10%, rgba(74,95,58,.35), transparent 60%),
              radial-gradient(900px 700px at 90% 25%, rgba(184,92,93,.25), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit}
img{max-width:100%; height:auto; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#000; border:1px solid var(--line); border-radius:10px; z-index:9999;
}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(11,15,13,.70);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px; text-decoration:none;
}
.brand img{width:44px; height:44px; border-radius:12px; border:1px solid var(--line); background:#fff; padding:6px}
.brand .name{font-weight:800; letter-spacing:.2px}
.brand .sub{font-size:12px; color:var(--muted); margin-top:2px}

.navlinks{
  display:flex; gap:18px; align-items:center; flex-wrap:wrap;
}
.navlinks a{
  text-decoration:none;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
}
.navlinks a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.navlinks a.active{background:rgba(74,95,58,.18); color:var(--text); border:1px solid rgba(74,95,58,.35)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  text-decoration:none;
  gap:10px;
  font-weight:700;
}
.btn.primary{
  background: linear-gradient(135deg, rgba(74,95,58,.95), rgba(74,95,58,.55));
  border-color: rgba(74,95,58,.55);
  box-shadow: var(--shadow);
}
.btn.primary:hover{filter:brightness(1.06)}
.btn.ghost{
  background: rgba(255,255,255,.05);
}
.btn.small{padding:10px 12px; border-radius:12px; font-size:14px}

.hero{
  padding:44px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:center;
}
.card{
  background: linear-gradient(180deg, rgba(16,22,20,.92), rgba(15,20,18,.72));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero .card{padding:22px}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border:1px solid rgba(74,95,58,.35);
  background: rgba(74,95,58,.14);
  border-radius:999px;
  color:var(--muted);
  font-weight:650;
  font-size:13px;
}
h1{margin:14px 0 12px; font-size:42px; line-height:1.15}
.lead{color:var(--muted); font-size:17px; margin:0 0 18px}

.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.meta{
  display:flex; gap:14px; flex-wrap:wrap; margin-top:16px; color:var(--muted); font-size:14px
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border:1px dashed rgba(255,255,255,.20);
  border-radius:999px;
  background: rgba(255,255,255,.04);
}

.hero-media{
  padding:14px;
}
.hero-media img{
  border-radius: 22px;
  border:1px solid var(--line);
  background:#fff;
  padding:10px;
}

section{padding:22px 0}
.section-title{
  display:flex; align-items:end; justify-content:space-between; gap:16px; flex-wrap:wrap;
  margin-bottom:12px;
}
.section-title h2{margin:0; font-size:26px}
.section-title p{margin:0; color:var(--muted)}

.grid{
  display:grid; gap:14px;
}
.grid.three{grid-template-columns: repeat(3, 1fr)}
.grid.two{grid-template-columns: repeat(2, 1fr)}
.grid.four{grid-template-columns: repeat(4, 1fr)}

.tile{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.tile h3{margin:0 0 8px; font-size:18px}
.tile p{margin:0; color:var(--muted)}
.tile ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.tile li{margin:6px 0}

.callout{
  padding:18px;
  display:flex; gap:14px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
}
.callout strong{display:block; margin-bottom:6px; font-size:18px}
.callout p{margin:0; color:var(--muted)}
.callout .actions{display:flex; gap:10px; flex-wrap:wrap}

.faq details{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:12px 14px;
  background: rgba(255,255,255,.04);
}
.faq details + details{margin-top:12px}
.faq summary{
  cursor:pointer;
  font-weight:750;
}
.faq summary::-webkit-details-marker{display:none}
.faq .answer{color:var(--muted); margin-top:10px}

.price{
  padding:18px;
  display:flex; flex-direction:column; gap:12px;
}
.price .top{display:flex; justify-content:space-between; gap:12px; align-items:flex-start}
.price .tag{
  font-weight:800; font-size:18px;
}
.price .amount{
  font-weight:900; font-size:22px; color:#fff;
}
.price .note{color:var(--muted); font-size:13px; margin-top:-6px}
.price ul{margin:0; padding-left:18px; color:var(--muted)}
.price li{margin:6px 0}
.price .btn{margin-top:6px}

footer{
  margin-top:22px;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.22);
  padding:22px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:18px;
}
footer p, footer a{color:var(--muted); text-decoration:none}
footer a:hover{color:var(--text)}
.small{font-size:12px}

.form{
  display:grid; gap:10px;
}
.input{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
}
textarea.input{min-height:120px; resize:vertical}
label{font-size:13px; color:var(--muted)}
hr.sep{border:none; border-top:1px solid var(--line); margin:14px 0}

.notice{
  padding:12px 14px;
  border-radius: var(--radius);
  border:1px solid rgba(184,92,93,.35);
  background: rgba(184,92,93,.10);
  color:var(--muted);
}

@media (max-width: 900px){
  .hero-grid{grid-template-columns: 1fr}
  h1{font-size:34px}
  .grid.three{grid-template-columns: 1fr}
  .grid.two{grid-template-columns: 1fr}
  .grid.four{grid-template-columns: 1fr 1fr}
  .footer-grid{grid-template-columns: 1fr}
  .navlinks{display:none}
}