
:root{
  --bg:#0b0f0e;
  --text:#e9f2ee;
  --muted:#a9b7b2;
  --brand:#18c27e;
  --brand2:#0fe7a7;
  --border:rgba(233,242,238,.12);
  --shadow:0 10px 30px rgba(0,0,0,.45);
  --radius:14px;
}
*{box-sizing:border-box}
html,body{width:100%;overflow-x:hidden}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% -10%, rgba(24,194,126,.25), transparent 55%),
              radial-gradient(900px 600px at 110% 0%, rgba(15,231,167,.18), transparent 55%),
              #0b0f0e;
  color:var(--text);
}
a{color:var(--text); text-decoration:none}
.container{width:min(1100px, 100%); margin:0 auto; padding:18px}
.topbar{
  position:sticky; top:0; z-index:30;
  backdrop-filter:saturate(160%) blur(10px);
  background:rgba(11,15,14,.75);
  border-bottom:1px solid var(--border);
}
.nav{display:flex; align-items:center; justify-content:space-between; gap:14px}
.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:42px; height:42px; border-radius:12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 25px rgba(24,194,126,.25);
}
.brand .name{display:flex; flex-direction:column; line-height:1.1}
.brand .name b{font-size:16px; letter-spacing:.2px}
.brand .name span{font-size:12px; color:var(--muted)}
.links{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.links a{
  font-size:14px; color:var(--muted);
  padding:10px 12px; border-radius:12px;
}
.links a:hover{background:rgba(233,242,238,.06); color:var(--text)}
.cta{
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#001a10 !important;
  font-weight:700;
  box-shadow: 0 10px 25px rgba(24,194,126,.18);
}
.burger{display:none}
.drawer{display:none}

.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  padding-top:18px;
}
.panel{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.pad{padding:18px}
.h1{font-size:40px; margin:0 0 10px}
.lead{color:var(--muted); font-size:16px; margin:0 0 14px; line-height:1.5}
.actions{display:flex; gap:10px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px; border-radius:14px;
  border:1px solid var(--border);
  background:rgba(233,242,238,.06);
  color:var(--text);
  font-weight:700;
}
.btn:hover{background:rgba(233,242,238,.1)}
.btn.primary{
  border:none;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#001a10;
}
.kpis{display:grid; gap:10px}
.kpi{display:flex; gap:10px; align-items:flex-start}
.kpi i{
  width:34px; height:34px; border-radius:12px;
  background:rgba(24,194,126,.14);
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid rgba(24,194,126,.25);
}
.kpi b{display:block}
.small{color:var(--muted); font-size:13px; line-height:1.4}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px}
.card{
  background:rgba(15,23,21,.7);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:14px;
}
.card h3{margin:0 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:13px; line-height:1.4}
.badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:10px}
.badge{
  font-size:12px; color:var(--muted);
  border:1px solid var(--border);
  padding:8px 10px; border-radius:999px;
  background:rgba(233,242,238,.04);
}

.section{margin-top:14px}
.section h2{margin:0 0 10px; font-size:20px}
.gallery{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:10px;
}
.ph{
  border-radius:16px; border:1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(24,194,126,.28), rgba(15,231,167,.08)),
    radial-gradient(700px 250px at 20% 10%, rgba(255,255,255,.10), transparent 55%),
    rgba(255,255,255,.03);
  height:120px;
  position:relative;
  overflow:hidden;
}
.ph:after{
  content:"Photo placeholder (swap for your own)";
  position:absolute; left:12px; bottom:10px;
  color:rgba(233,242,238,.6); font-size:12px;
}

.footer{
  margin-top:20px;
  border-top:1px solid var(--border);
  background:rgba(11,15,14,.65);
}
.split{display:flex; justify-content:space-between; align-items:center; gap:10px; flex-wrap:wrap}
hr.sep{border:none; border-top:1px solid var(--border); margin:12px 0}

.formwrap{max-width:820px; margin:0 auto}
.progress{display:flex; gap:10px; align-items:center; justify-content:space-between; margin:12px 0 14px}
.pill{flex:1; height:10px; background:rgba(233,242,238,.08); border-radius:999px; overflow:hidden; border:1px solid var(--border)}
.pill i{display:block; height:100%; width:0%; background:linear-gradient(90deg, var(--brand), var(--brand2))}
.stepmeta{font-size:12px; color:var(--muted); white-space:nowrap}
.stage{display:grid; gap:12px}
.optionGrid{display:grid; grid-template-columns: repeat(2, 1fr); gap:10px}
.opt{
  padding:14px; border-radius:16px;
  border:1px solid var(--border);
  background:rgba(233,242,238,.05);
  cursor:pointer;
  display:flex; gap:10px; align-items:flex-start;
}
.opt:hover{background:rgba(233,242,238,.09)}
.opt.selected{border-color:rgba(24,194,126,.55); box-shadow:0 0 0 3px rgba(24,194,126,.12)}
.opt .icon{width:34px; height:34px; border-radius:12px; background:rgba(24,194,126,.14); border:1px solid rgba(24,194,126,.25); display:flex; align-items:center; justify-content:center}
.field{display:grid; gap:6px}
label{font-size:13px; color:var(--muted)}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(11,15,14,.55);
  color:var(--text);
  outline:none;
}
textarea{min-height:90px; resize:vertical}
.form-actions{display:flex; gap:10px; justify-content:space-between; flex-wrap:wrap; margin-top:10px}
.notice{font-size:12px; color:rgba(233,242,238,.65)}

@media (max-width: 860px){
  .hero{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .links{display:none}
  .burger{display:inline-flex; padding:10px 12px; border-radius:12px; border:1px solid var(--border); background:rgba(233,242,238,.04); color:var(--text)}
  .drawer{display:none; margin-top:12px; background:rgba(15,23,21,.8); border:1px solid var(--border); border-radius:16px; padding:10px}
  .drawer a{display:block; padding:10px 12px; border-radius:12px; color:var(--muted)}
  .drawer a.cta{color:#001a10 !important}
  .optionGrid{grid-template-columns:1fr}
  .h1{font-size:32px}
}
