:root{
  --bg:#0f1215;
  --panel:#14181d;
  --soft:#1b2128;
  --text:#e7ecf2;
  --muted:#aab4c0;
  --gold:#c6a24a;
  --line:#242c35;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% 10%, #151a20 0%, var(--bg) 55%, #0b0d10 100%);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
.container{max-width:1120px;margin:0 auto;padding:0 20px}

.header{
  position:sticky; top:0; z-index:10;
  background: rgba(15,18,21,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header__inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0;gap:16px}

.brand{display:flex;align-items:center;gap:12px}
.brand__logo{
  width:350px;height:100px;border-radius:14px;object-fit:cover;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}
.brand__stack{display:flex;flex-direction:column;line-height:1.05}
.brand__name{font-weight:900;letter-spacing:2px;font-size:16px}
.brand__tag{color:var(--muted);font-size:12px}

.nav{display:flex;gap:18px;align-items:center;flex-wrap:wrap}
.nav a{color:var(--muted);font-weight:600;font-size:25px}
.nav a:hover{color:var(--text)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:16px;
  background: linear-gradient(135deg, var(--gold), #e3c77a);
  color:#111;font-weight:800;border:1px solid rgba(0,0,0,.2);
  box-shadow:0 14px 40px rgba(198,162,74,.15);
}
.btn--ghost{
  background:transparent;color:var(--text);
  border:1px solid rgba(255,255,255,.12);box-shadow:none;
}
.btn--ghost:hover{border-color: rgba(198,162,74,.55);}

.chip{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;
  background: rgba(198,162,74,.12);
  border:1px solid rgba(198,162,74,.25);
  color:#f1e2b6;font-weight:700;font-size:12px;letter-spacing:.3px;
}

.hero{padding:56px 0 22px}
.hero__inner{display:grid;grid-template-columns:1.15fr .85fr;gap:22px;align-items:start}
.hero__content h1{font-size:46px;line-height:1.03;margin:12px 0;letter-spacing:-.5px}
.hero__content p{color:var(--muted);max-width:62ch;margin:0 0 16px 0;font-size:16px;line-height:1.6}
.hero__cta{display:flex;gap:12px;flex-wrap:wrap;margin:18px 0}

.hero__kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:12px}
.kpi{
  background: rgba(20,24,29,.68);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;padding:14px;
  box-shadow:0 18px 50px rgba(0,0,0,.24);
}
.kpi__num{font-weight:900;letter-spacing:.4px}
.kpi__text{color:var(--muted);font-size:13px;margin-top:6px;line-height:1.45}

.panel{
  background: linear-gradient(180deg, rgba(20,24,29,.95), rgba(20,24,29,.78));
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;padding:18px;
  box-shadow: var(--shadow);
}
.panel--soft{margin-top:12px;background: rgba(27,33,40,.55);box-shadow:none}
.panel__title{font-weight:900;margin-bottom:10px;letter-spacing:.3px}
.panel__note{margin-top:12px;color:var(--muted);font-size:13px}
.list{margin:0;padding-left:18px;color:var(--muted)}
.list li{margin:7px 0}

.steps{display:grid;gap:10px;margin-top:10px}
.step{display:flex;align-items:center;gap:10px;color:var(--muted);font-weight:700}
.step span{
  width:26px;height:26px;border-radius:10px;
  display:inline-flex;align-items:center;justify-content:center;
  background: rgba(198,162,74,.14);
  border:1px solid rgba(198,162,74,.25);
  color:#f1e2b6;font-weight:900;
}

.section{padding:44px 0}
.section__title h1,.section__title h2{margin:0 0 6px 0}
.section__title p{margin:0;color:var(--muted)}
.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:18px}

.card{
  background: rgba(20,24,29,.7);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;padding:16px;
  box-shadow:0 18px 50px rgba(0,0,0,.22);
}
.card--soft{background: rgba(27,33,40,.52);box-shadow:none}
.card__title{font-weight:900;margin-bottom:6px}
.card__text{color:var(--muted);font-size:14px;line-height:1.5}

.section--cta{padding:20px 0 60px}
.cta{
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
  background: linear-gradient(135deg, rgba(198,162,74,.12), rgba(27,33,40,.35));
  border:1px solid rgba(198,162,74,.22);
  border-radius:24px;padding:20px;
}
.cta h2{margin:0 0 6px 0}
.cta p{margin:0;color:var(--muted)}

.content p{color:var(--muted);line-height:1.7;max-width:80ch}

.two-col{display:grid;grid-template-columns:1.1fr .9fr;gap:14px;margin-top:18px}
.form{display:flex;flex-direction:column;gap:12px}
.row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.field{display:flex;flex-direction:column;gap:8px}
label{font-size:12px;color:var(--muted);font-weight:700;letter-spacing:.2px}
input,textarea{
  background: rgba(15,18,21,.92);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:12px 12px;color:var(--text);outline:none;
}
input:focus,textarea:focus{border-color: rgba(198,162,74,.55)}
.hint{color:var(--muted);font-size:12px;margin-top:4px}
.divider{height:1px;background: rgba(255,255,255,.08);margin:16px 0}
.quote{font-weight:900;letter-spacing:.2px}
.muted{color:var(--muted)}
.spacer{height:14px}
.pill-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.pill{
  padding:8px 12px;border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color: var(--muted);font-weight:800;font-size:12px;
}

.footer{border-top:1px solid rgba(255,255,255,.06);padding:22px 0;margin-top:44px}
.footer__inner{display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap}
.footer__brand{font-weight:900;letter-spacing:1px}
.footer__muted{color:var(--muted);font-size:13px;margin-top:6px}
.footer__links{display:flex;gap:14px}
.footer__links a{color:var(--muted);font-weight:700}
.footer__links a:hover{color:var(--text)}

@media (max-width: 980px){
  .hero__inner{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 640px){
  .hero__content h1{font-size:36px}
  .hero__kpis{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
  .nav{gap:12px}
  .brand__logo{width:40px;height:40px}
}