:root{
  --bg:#070708;
  --panel:#0e0f12;
  --panel2:#0b0c0f;
  --text:#f5f5f5;
  --muted:#b7b7b7;
  --line:rgba(255,255,255,.10);
  --gold:#d4af37;
  --gold2:#f2d27b;
  --shadow: 0 18px 45px rgba(0,0,0,.55);
  --radius:16px;
}
*{box-sizing:border-box}
html,body{
  margin:0;padding:0;
  background: radial-gradient(circle at 20% 10%, rgba(212,175,55,.10), transparent 45%),
              radial-gradient(circle at 85% 30%, rgba(242,210,123,.08), transparent 45%),
              var(--bg);
  color:var(--text);
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.wrap{max-width:1120px;margin:0 auto;padding:0 18px}
.topbar{
  position:sticky;top:0;z-index:50;
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(10px);
  background: rgba(7,7,8,.75);
}
.topbar__inner{
  display:flex;gap:16px;align-items:center;justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex;gap:10px;align-items:center}
.brand__mark{
  width:44px;height:44px;border-radius:999px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display:flex;align-items:center;justify-content:center;
  color:#0b0b0c;font-weight:900;
  box-shadow: 0 10px 28px rgba(0,0,0,.65);
  letter-spacing:.02em;
}
.brand__title{font-weight:900;letter-spacing:.01em}
.brand__sub{font-size:13px;color:var(--muted);margin-top:2px}
.topnav{
  display:flex;gap:12px;align-items:center;flex-wrap:wrap;justify-content:flex-end
}
.topnav a{
  color:var(--text);text-decoration:none;font-size:14px;opacity:.92
}
.topnav a:hover{opacity:1;text-decoration:underline}
.hero{padding:44px 0 26px}
.hero h1{
  margin:0 0 10px;font-size:38px;letter-spacing:-.02em
}
.lead{
  max-width:900px;color:var(--muted);font-size:16px;line-height:1.6;margin:0
}
.hero__cta{margin-top:18px;display:flex;gap:10px;flex-wrap:wrap}
.meta{margin-top:18px;display:flex;gap:10px;flex-wrap:wrap}
.pill{
  display:inline-flex;align-items:center;
  padding:7px 10px;border:1px solid var(--line);
  border-radius:999px;color:var(--muted);font-size:13px;
  background: rgba(14,15,18,.55);
}
.section{padding:26px 0}
.section--muted{
  background: rgba(14,15,18,.45);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{margin-bottom:14px}
.section__head h2{margin:0 0 6px;font-size:22px}
.section__head p{margin:0;color:var(--muted);line-height:1.55}
.controls{display:flex;gap:10px;flex-wrap:wrap;margin:14px 0 18px}
.input,.select{
  padding:10px 12px;border-radius:12px;border:1px solid var(--line);
  background: rgba(14,15,18,.75);
  color:var(--text);outline:none
}
.input{min-width:260px;flex:1}
.select{min-width:220px}
.input:focus,.select:focus{
  border-color: rgba(212,175,55,.6);
  box-shadow: 0 0 0 1px rgba(212,175,55,.4);
}
.grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
@media (max-width:980px){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:640px){.grid{grid-template-columns:1fr}.hero h1{font-size:30px}}
.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(14,15,18,.85), rgba(11,12,15,.85));
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:14px;
  display:flex;flex-direction:column;gap:10px;
}
.card__title{font-weight:900;letter-spacing:.01em}
.card__desc{color:var(--muted);font-size:14px;line-height:1.5}
.card__meta{display:flex;gap:8px;flex-wrap:wrap}
.tag{
  font-size:12px;color:var(--muted);
  border:1px solid var(--line);
  padding:4px 8px;border-radius:999px;
  background: rgba(7,7,8,.55);
}
.card__actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:auto}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:10px 12px;border-radius:999px;
  border:1px solid var(--line);
  text-decoration:none;color:var(--text);
  font-weight:800;font-size:14px;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn--primary{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border:none;color:#0b0b0c;
  box-shadow: 0 12px 26px rgba(0,0,0,.45);
}
.btn--ghost{
  background: transparent;
  border-color: rgba(212,175,55,.35);
}
.btn--ghost:hover{
  box-shadow: 0 0 0 1px rgba(212,175,55,.25);
}
.video-card{
  border:1px solid var(--line);
  background: rgba(14,15,18,.72);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:14px;
}
video{width:100%;border-radius:12px;display:block}
.video-card__note{margin-top:10px;color:var(--muted);font-size:13px;line-height:1.5}
.video-card__status{
  margin-top:10px;
  padding:10px 12px;
  border-radius:12px;
  border:1px dashed rgba(212,175,55,.35);
  color:var(--muted);
  background: rgba(7,7,8,.45);
  font-size:13px;
}
.callout{
  margin-top:20px;padding:16px;border-radius:var(--radius);
  border:1px solid rgba(212,175,55,.22);
  background: rgba(14,15,18,.55);
  display:flex;gap:12px;align-items:center;justify-content:space-between;flex-wrap:wrap
}
.callout__title{font-weight:900}
.callout__body{color:var(--muted);max-width:680px;line-height:1.5}
.steps{color:var(--muted);line-height:1.7}
.sticky-consult{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:9999;
  padding:12px 14px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color:#0b0b0c;
  font-weight:900;
  text-decoration:none;
  border:none;
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
}
.sticky-consult:hover{transform:translateY(-1px)}
.sticky-consult:active{transform:translateY(0)}
.footer{
  border-top:1px solid var(--line);
  padding:18px 0;
  background: rgba(7,7,8,.70);
}
.footer__inner{
  display:flex;gap:14px;align-items:center;justify-content:space-between;flex-wrap:wrap
}
.footer__title{font-weight:900}
.footer__sub{color:var(--muted);font-size:13px;margin-top:2px}
.footer__links{display:flex;gap:12px;flex-wrap:wrap}
.footer__links a{color:var(--muted);text-decoration:none;font-size:14px}
.footer__links a:hover{color:var(--text);text-decoration:underline}
