:root{
  --bg:#0b0b0f;
  --panel:#11111a;
  --panel2:#0f0f16;
  --text:#f5f5f7;
  --muted:#b8b8c7;
  --gold:#d4af37;
  --border:rgba(255,255,255,.12);
  --shadow: 0 14px 40px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(212,175,55,.14), transparent 60%),
              radial-gradient(900px 500px at 90% 20%, rgba(255,255,255,.06), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{width:min(1100px, 92%); margin:0 auto}

.topbar{
  background: rgba(255,255,255,.05);
  border-bottom:1px solid var(--border);
  font-size: 13px;
}
.topbar-inner{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0;
}
.topbar-link{opacity:.9; margin-left:14px}
.topbar-link:hover{opacity:1; color:var(--gold)}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,11,15,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
.logo{display:flex; align-items:center; gap:10px}
.logo-img{
  width:54px;
  height:54px;
  object-fit:contain;
  border-radius:12px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  padding:6px;
}
.logo-text{font-weight:900; letter-spacing:.2px}

.nav{display:flex; gap:18px; align-items:center}
.nav a{opacity:.9; font-weight:600; font-size:14px}
.nav a:hover{opacity:1; color:var(--gold)}

.header-actions{display:flex; gap:10px; align-items:center}
.menu-btn{
  display:none;
  background:transparent; border:1px solid var(--border);
  color:var(--text); padding:10px 12px; border-radius:12px;
}

.btn{
  background: linear-gradient(180deg, rgba(212,175,55,.95), rgba(212,175,55,.70));
  color:#111;
  border:1px solid rgba(212,175,55,.65);
  padding:11px 14px;
  border-radius:14px;
  font-weight:800;
  display:inline-flex; justify-content:center; align-items:center;
  box-shadow: 0 10px 26px rgba(212,175,55,.12);
}
.btn:hover{filter:brightness(1.05)}
.btn-outline{
  background: transparent;
  color:var(--text);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:none;
}
.btn-outline:hover{border-color: rgba(212,175,55,.55); color:var(--gold)}
.btn-full{width:100%}

.hero{padding:54px 0 28px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:start;
}
.hero h1{font-size:44px; line-height:1.05; margin:0 0 12px}
.lead{color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 18px}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:16px}
.trust-row{display:flex; flex-wrap:wrap; gap:10px}
.trust-pill{
  font-size:13px;
  color:rgba(245,245,247,.92);
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding:8px 10px;
  border-radius:999px;
}

.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}
.hero-card h3{margin:0 0 6px}
.muted{color:var(--muted)}
.fineprint{color:rgba(184,184,199,.9); font-size:12px; margin:10px 0 0}

.section{padding:58px 0}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.00));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-head{margin-bottom:18px}
.section-head h2{margin:0 0 8px; font-size:30px}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  background: rgba(17,17,26,.7);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted); line-height:1.55}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.tile{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding:16px;
  border-radius:16px;
  font-weight:700;
}

.why-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.why{
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius:18px;
  padding:18px;
}
.why h3{margin:0 0 8px}
.why p{margin:0; color:var(--muted); line-height:1.55}

.about{
  border:1px solid var(--border);
  background: rgba(17,17,26,.55);
  border-radius:18px;
  padding:18px;
  line-height:1.65;
  color:rgba(245,245,247,.92);
}
.about-badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.badge{
  border:1px solid rgba(212,175,55,.30);
  color:var(--gold);
  background: rgba(212,175,55,.08);
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
}

.contact-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:14px;
}
.contact-card{
  border:1px solid var(--border);
  background: rgba(17,17,26,.65);
  border-radius:18px;
  padding:18px;
}
.contact-lines > div{margin:10px 0}
.mini-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.form{display:grid; gap:10px}
label{display:grid; gap:6px; font-size:13px; color:rgba(245,245,247,.92)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
  color:var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}

.footer{
  border-top:1px solid var(--border);
  padding:26px 0;
  background: rgba(0,0,0,.25);
}
.footer-inner{
  display:flex;
  gap:14px;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}
.footer-brand{font-weight:900}
.footer-links{display:flex; gap:12px}
.small{font-size:12px; opacity:.9}

/* Responsive */
@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
  .cards{grid-template-columns: repeat(2, 1fr)}
  .why-grid{grid-template-columns: 1fr}
  .contact-grid{grid-template-columns: 1fr}
}
@media (max-width: 640px){
  .nav{display:none}
  .menu-btn{display:inline-flex}
  .cards{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .hero h1{font-size:36px}
  .logo-text{display:none}
}
.nav.open{
  display:flex !important;
  position:absolute;
  left:0; right:0;
  top:106px;
  background: rgba(11,11,15,.95);
  border-bottom:1px solid var(--border);
  padding:14px;
  flex-direction:column;
  gap:10px;
}
