:root{
  --bg:#070a0f;
  --panel:#0c121b;
  --panel2:#0b1018;
  --text:#e9eef6;
  --muted:#a7b3c2;
  --line:rgba(255,255,255,.08);
  --line2:rgba(255,255,255,.12);
  --accent:#22c55e;
  --accent2:#0ea5e9;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --shadow2: 0 10px 30px rgba(0,0,0,.45);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(34,197,94,.14), transparent 60%),
    radial-gradient(800px 450px at 85% 10%, rgba(14,165,233,.12), transparent 55%),
    radial-gradient(900px 600px at 40% 120%, rgba(34,197,94,.09), transparent 65%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
strong{color:var(--text)}
.container{max-width:1200px; margin:0 auto; padding:0 22px}
.small{font-size:13px; color:var(--muted)}
.hr{
  height:1px; background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin:0;
  border:0;
}

/* Header */
.header{
  position:sticky; top:0; z-index:30;
  backdrop-filter: blur(12px);
  background: rgba(7,10,15,.72);
  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:10px;
  font-weight:900;
  letter-spacing:.4px;
  font-size:20px;
}
.brand-mark{
  width:28px; height:28px; border-radius:10px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 55%),
    linear-gradient(135deg, rgba(34,197,94,.95), rgba(14,165,233,.85));
  box-shadow: 0 18px 40px rgba(34,197,94,.15);
  border:1px solid rgba(255,255,255,.10);
}
.nav{display:flex; gap:10px; font-size:14px; color:var(--muted)}
.nav a{
  padding:9px 12px;
  border-radius:14px;
  border:1px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.nav a:hover{
  background: rgba(255,255,255,.05);
  border-color: var(--line);
  color: var(--text);
}
.header-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  font-weight:800;
  font-size:13px;
  background: rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.28);
  color: var(--text);
}
.header-cta:hover{border-color: rgba(34,197,94,.45)}

/* Hero */
.hero{
  position:relative;
  padding: 74px 0 34px;
}
.hero::before{
  content:"";
  position:absolute; inset:-1px;
  background:
    radial-gradient(1200px 500px at 30% 0%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(34,197,94,.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 55%);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:24px;
  align-items:center;
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  background: rgba(255,255,255,.03);
  font-size:13px;
  width:max-content;
}
.pill{
  padding:4px 10px;
  border-radius:999px;
  background: rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.26);
  color: var(--text);
  font-weight:800;
  font-size:12px;
}
.h1{
  margin:16px 0 0;
  font-size: clamp(42px, 5.7vw, 74px);
  line-height:1.04;
  letter-spacing:-.03em;
  font-weight:950;
}
.h1 span{
  background: linear-gradient(90deg, rgba(34,197,94,1), rgba(14,165,233,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:14px 0 0;
  max-width: 680px;
  font-size: clamp(16px, 1.7vw, 20px);
  color: var(--muted);
}
.btn-row{
  margin-top:24px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:16px;
  font-weight:900;
  font-size:14px;
  border:1px solid transparent;
  transition: transform .15s ease, filter .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active{transform: translateY(1px)}
.btn-primary{
  background: linear-gradient(135deg, rgba(34,197,94,1), rgba(14,165,233,.95));
  color: #06110a;
  box-shadow: 0 18px 50px rgba(34,197,94,.18);
}
.btn-primary:hover{filter:brightness(1.05)}
.btn-outline{
  border-color: var(--line2);
  background: rgba(255,255,255,.03);
  color: var(--text);
}
.btn-outline:hover{border-color: rgba(34,197,94,.45)}
.stats{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color: var(--muted);
  font-size:13px;
}
.stat{
  display:flex; align-items:center; gap:8px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(255,255,255,.03);
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(34,197,94,.8);
  box-shadow: 0 0 0 4px rgba(34,197,94,.14);
}

/* Hero visual */
.hero-visual{
  position:relative;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  min-height: 360px;
}
.hero-visual::before{
  content:"";
  position:absolute; inset:-1px;
  background:
    radial-gradient(500px 220px at 30% 30%, rgba(34,197,94,.22), transparent 60%),
    radial-gradient(500px 240px at 80% 35%, rgba(14,165,233,.18), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.01));
}
.hero-visual-inner{
  position:relative;
  padding:18px;
}
.visual-card{
  border:1px solid var(--line);
  border-radius: 16px;
  background: rgba(0,0,0,.35);
  padding:14px;
  box-shadow: var(--shadow2);
}
.visual-title{font-weight:900; letter-spacing:.2px}
.visual-sub{color:var(--muted); font-size:13px; margin-top:6px}
.visual-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.visual-ph{
  height:110px;
  border-radius:14px;
  border:1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.visual-badge{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  color: var(--muted);
  font-size:13px;
}

/* Sections */
.section{padding:74px 0}
.section-title{
  text-align:center; margin:0;
  font-size: 34px;
  letter-spacing:-.02em;
}
.section-sub{
  text-align:center; margin:10px auto 0; max-width:760px;
  color:var(--muted);
}

/* Cards / grids */
.grid{
  margin-top:34px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.card{
  grid-column: span 3;
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow2);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(34,197,94,.35);
  background: rgba(255,255,255,.04);
}
.card .ph{
  height:150px;
  border-radius:16px;
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,.14), transparent 55%),
    linear-gradient(135deg, rgba(34,197,94,.18), rgba(14,165,233,.10), rgba(255,255,255,.02));
  border:1px solid var(--line);
  margin-bottom:14px;
}
.card h3{margin:0 0 6px; font-size:18px; font-weight:900}
.card p{margin:0; color:var(--muted); font-size:14px}

.split{
  margin-top:34px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.panel{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow2);
}
.panel h3{margin:0 0 8px; font-size:18px; font-weight:950}
.panel p{margin:0; color:var(--muted); font-size:14px}
.steps{margin-top:14px; display:grid; gap:10px}
.step{
  display:flex; gap:12px; align-items:flex-start;
  padding:12px;
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(0,0,0,.22);
}
.step-num{
  width:30px; height:30px;
  border-radius:12px;
  display:grid; place-items:center;
  background: rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.26);
  color: var(--text);
  font-weight:950;
}
.step b{display:block; margin-bottom:2px}

.trust{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.bullets{
  margin-top:22px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  color:var(--muted);
  font-size:14px;
}
.bullet{
  display:flex; gap:10px; align-items:center;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(255,255,255,.03);
}
.check{
  width:22px; height:22px;
  border-radius:10px;
  display:grid; place-items:center;
  background: rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.26);
  color: var(--accent);
  font-weight:950;
}

/* Quote section */
.quote{
  margin-top:26px;
  max-width:860px;
  margin-left:auto; margin-right:auto;
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow2);
}
.quote-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:12px;
}
.field label{display:block; color:var(--muted); font-size:13px; margin-bottom:6px}
.field input, .field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
.field textarea{min-height:110px; resize:vertical}
.field input:focus, .field textarea:focus{
  border-color: rgba(34,197,94,.40);
  box-shadow: 0 0 0 4px rgba(34,197,94,.12);
}
.form-actions{
  margin-top:12px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  color:var(--muted);
  padding:24px 0;
  margin-top:40px;
  font-size:13px;
}
.footer-inner{display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; }
  .hero-visual{min-height: 320px}
  .card{grid-column: span 6}
  .split{grid-template-columns: 1fr}
  .quote-grid{grid-template-columns: 1fr}
  .nav{display:none}
}
@media (max-width: 620px){
  .card{grid-column: span 12}
  .btn{width:100%}
  .btn-row{gap:10px}
}
