:root{
  --bg:#0b0f12;
  --panel:rgba(18,22,26,.88);
  --text:#d3dbe2;
  --muted:#9aa6b2;
  --green:#39FF14;
  --silver:#BFC7CF;
  --line:rgba(255,255,255,.10);
  --shadow: 0 10px 34px rgba(0,0,0,.65);
  --radius:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--bg);
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 20% 20%, rgba(57,255,20,.05), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.03), transparent 55%);
}
a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92vw); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(10,12,14,.72);
  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:10px;
  font-weight:800; letter-spacing:.3px;
}
.brand-badge{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(57,255,20,.22), rgba(191,199,207,.12));
  border:1px solid rgba(57,255,20,.25);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.brand-badge svg{width:20px; height:20px}
.brand span b{color:var(--green)}
.menu{
  display:flex; align-items:center; gap:18px;
  color:var(--muted);
  font-weight:600;
}
.menu a:hover{color:var(--text)}
.cta{
  display:flex; align-items:center; gap:10px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  color:var(--text);
  font-weight:700;
}
.btn:hover{border-color: rgba(57,255,20,.35)}
.btn-primary{
  background: linear-gradient(135deg, rgba(57,255,20,.20), rgba(57,255,20,.06));
  border-color: rgba(57,255,20,.35);
}
.btn-primary:hover{
  box-shadow: 0 0 0 3px rgba(57,255,20,.10);
}
.btn small{opacity:.8; font-weight:700}

.hero{
  position:relative;
  padding: 56px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:24px;
  align-items:stretch;
}
.panel{
  background: var(--panel);
  border:1px solid rgba(57,255,20,.14);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.hero-copy{
  padding:26px 24px;
}
.hero-logo{
  margin-bottom:18px;
}
.hero-logo img{
  max-width:320px;
  width:100%;
  height:auto;
  border-radius:10px;
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(57,255,20,.22);
  background: rgba(57,255,20,.06);
  color: var(--silver);
  font-weight:800;
  letter-spacing:.2px;
  font-size:13px;
}
.kicker .dot{
  width:8px; height:8px; border-radius:99px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(57,255,20,.55);
}
h1{
  margin:14px 0 10px;
  font-size: 44px;
  line-height:1.06;
  letter-spacing:-.6px;
}
h1 b{color: var(--green)}
.lead{
  color: var(--muted);
  font-size: 16.5px;
  line-height:1.6;
  margin: 0 0 18px;
}
.hero-actions{
  display:flex; flex-wrap:wrap; gap:10px; align-items:center;
}
.hero-actions .btn{padding:12px 16px}
.hero-actions .btn-outline{
  background: rgba(255,255,255,.02);
}
.trust{
  margin-top:18px;
  display:flex; gap:14px; flex-wrap:wrap;
  color:var(--muted);
  font-weight:700;
}
.trust span{
  display:inline-flex; align-items:center; gap:8px;
}
.trust svg{width:16px; height:16px; color: var(--green)}
.hero-card{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.hero-card .media{
  border-radius: 14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:#0a0f12;
  height: 240px;
}
.hero-card .media img{
  width:100%; height:100%; object-fit:cover;
  filter: contrast(1.05) saturate(1.02);
}
.hero-card h3{
  margin:0;
  font-size:18px;
}
.hero-card p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
  font-size:14.5px;
}
.hero-card .mini{
  display:grid; grid-template-columns: 1fr 1fr;
  gap:10px;
}
.stat{
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  padding:10px 12px;
  background: rgba(255,255,255,.02);
}
.stat b{display:block; font-size:16px; color:var(--silver)}
.stat span{color:var(--muted); font-weight:700; font-size:12.5px}

.section{
  padding: 30px 0;
}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:16px;
  margin-bottom: 14px;
}
.section-head h2{
  margin:0;
  font-size: 26px;
  letter-spacing:-.2px;
}
.section-head p{margin:0; color:var(--muted); max-width: 60ch}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  padding:16px;
}
.card h3{margin:8px 0 6px; font-size:18px}
.card p{margin:0; color:var(--muted); line-height:1.55}
.icon{
  width:40px; height:40px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(57,255,20,.08);
  border: 1px solid rgba(57,255,20,.20);
}
.icon svg{width:20px; height:20px; color: var(--green)}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery img{
  width:100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  transition: .25s ease;
}
.gallery img:hover{
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(57,255,20,.22);
}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.list{
  margin:0; padding-left: 18px;
  color: var(--muted);
  line-height:1.7;
}
.badges{
  display:flex; flex-wrap:wrap; gap:8px;
  margin-top:12px;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color: var(--silver);
  font-weight:800;
  font-size:13px;
}
.badge .pill{
  width:8px; height:8px; border-radius:99px;
  background: var(--green);
}

.form{
  padding:16px;
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field label{
  display:block;
  font-weight:800;
  color: var(--silver);
  margin: 0 0 6px;
  font-size: 13px;
}
.field input, .field textarea, .field select{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(10,12,14,.55);
  color: var(--text);
  outline:none;
}
.field input:focus, .field textarea:focus, .field select:focus{
  border-color: rgba(57,255,20,.35);
  box-shadow: 0 0 0 3px rgba(57,255,20,.10);
}
.field textarea{min-height:120px; resize:vertical}
.form-actions{
  display:flex; flex-wrap:wrap; gap:10px; align-items:center;
  margin-top:12px;
}
.note{
  color: var(--muted);
  font-weight:700;
  font-size: 13px;
}

.footer{
  padding: 26px 0 34px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: rgba(10,12,14,.55);
  margin-top: 30px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
}
.footer b{color: var(--silver)}
.small-links{
  display:flex; gap:14px; flex-wrap:wrap;
}
.small-links a:hover{color: var(--text)}

.footer-logo{
  text-align:center;
  margin-top:24px;
  padding-top:20px;
  border-top:1px solid var(--line);
}
.footer-logo img{
  max-width:240px;
  width:100%;
  height:auto;
}

.mobile-toggle{display:none}

@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
  h1{font-size: 38px}
  .cards{grid-template-columns: repeat(2,1fr)}
  .gallery{grid-template-columns: repeat(2,1fr)}
  .footer-grid{grid-template-columns: 1fr}
}

@media (max-width: 640px){
  .menu{display:none}
  .mobile-toggle{display:inline-flex}
  .cards{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
  .form-row{grid-template-columns: 1fr}
}
