/* FILE: /public_html/assets/style.css */
:root{
  --bg:#020617;
  --panel:#071028;
  --text:#e5e7eb;
  --muted:#aab3c5;
  --gold:#d7b46a;
  --gold2:#f5e3b3;
  --line:rgba(215,180,106,.22);
  --shadow: 0 12px 40px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{margin:0;background:var(--bg);color:var(--text);font-family:Inter,system-ui,-apple-system}
a{color:inherit;text-decoration:none}
.hero{
  min-height:72vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 16px;
  background:
    linear-gradient(180deg,rgba(2,6,23,.65),rgba(2,6,23,.96)),
    url("https://images.unsplash.com/photo-1557517399-0a45dd1b6a9a?q=80&w=2000") center/cover;
}
.hero-inner{max-width:1050px;text-align:center}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(215,180,106,.30);
  background: rgba(215,180,106,.08);
  color: rgba(245,227,179,.92);
  font-weight:800;font-size:12px;letter-spacing:.3px;
}
.kdot{
  width:10px;height:10px;border-radius:999px;background:var(--gold);
  box-shadow:0 0 0 4px rgba(215,180,106,.14);
}
.hero h1{margin:18px 0 10px;font-size:clamp(28px,4.2vw,52px);font-weight:900}
.hero p{margin:0 auto 22px;max-width:820px;color:#cbd5f5;font-size:17px;line-height:1.6}
.cta-row{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:13px 20px;border-radius:999px;font-weight:800;
  border:1px solid transparent;
}
.btn.primary{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#020617; box-shadow:0 10px 30px rgba(215,180,106,.30);
}
.btn.ghost{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
}
.btn.full{width:100%}
.trust{margin-top:18px;display:flex;gap:14px;justify-content:center;flex-wrap:wrap;color:#bfc7da;font-size:13px}
.section{max-width:1100px;margin:0 auto;padding:64px 16px}
.section-head{text-align:center;margin-bottom:18px}
.section-head h2{margin:0 0 8px;font-size:28px}
.section-head p{margin:0;color:var(--muted)}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media(max-width:900px){.grid3{grid-template-columns:1fr}}
.card{
  background:linear-gradient(180deg,rgba(7,16,40,.92),rgba(2,6,23,.92));
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
}
.card h3{margin:0 0 8px;color:var(--gold)}
.card p{margin:0;color:#d7deee;line-height:1.6}
.two{display:grid;grid-template-columns:1.05fr .95fr;gap:16px}
@media(max-width:900px){.two{grid-template-columns:1fr}}
.form .row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media(max-width:700px){.form .row{grid-template-columns:1fr}}
.field{display:flex;flex-direction:column;gap:6px;margin-bottom:12px}
label{font-size:13px;color:#cfd6e6;font-weight:700}
input,select,textarea{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:var(--text);
  padding:12px 12px;
  border-radius:12px;
  outline:none;
}
input:focus,select:focus,textarea:focus{border-color:rgba(215,180,106,.55)}
.mini{margin-top:10px;color:var(--muted);font-size:12px}
.badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}
.badge{
  padding:10px 12px;border-radius:999px;
  border:1px solid rgba(215,180,106,.28);
  background:rgba(215,180,106,.06);
  font-size:13px;
}
.badge:hover{border-color:rgba(215,180,106,.55)}
.faq details{border-top:1px solid rgba(255,255,255,.08);padding:12px 0}
.faq details:first-of-type{border-top:none}
.faq summary{cursor:pointer;font-weight:800}
.faq p{margin:8px 0 0;color:#d7deee}
.footer{
  border-top:1px solid rgba(215,180,106,.18);
  padding:22px 16px;
  color:#9ca3af;
}
.footer-inner{max-width:1100px;margin:auto;display:flex;justify-content:space-between;align-items:center;gap:12px}
@media(max-width:700px){.footer-inner{flex-direction:column}}
.wa-float{
  padding:10px 14px;border-radius:999px;
  background:rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.22);
}
