:root{
  --bg: #0b0f17;
  --bg2:#0f172a;
  --card:#111827cc;
  --text:#e5e7eb;
  --muted:#a1a1aa;
  --line:#233044;
  --accent:#e4d33e;
  --accent2:#000000;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; background: var(--bg); color: var(--text); }
a{ color: inherit; text-decoration:none; }
.container{ width:min(1100px, 92vw); margin:0 auto; }

.site-header{
  position: sticky; top:0; z-index: 50;
  background: rgba(11,15,23,.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(35,48,68,.6);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}

.brand{ display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px; }
.brand-mark{
  width:34px; height:34px; display:grid; place-items:center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #000000);
  box-shadow: 0 10px 30px rgba#e4d33e;
}
.brand-name{ opacity:.95; }

.nav-links{ display:flex; align-items:center; gap:18px; }
.nav-links a{ opacity:.9; font-weight:600; }
.nav-links a:hover{ opacity:1; text-decoration: underline; text-underline-offset: 6px; }

.nav-toggle{
  display:none;
  width:44px; height:40px;
  border:1px solid rgba(35,48,68,.8);
  background: rgba(17,24,39,.6);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}
.nav-toggle span{
  display:block; height:2px; width:18px; margin:4px auto;
  background: var(--text);
  opacity:.9;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(35,48,68,.8);
  background: rgba(17,24,39,.55);
  font-weight:800;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); opacity:.95; }
.btn-sm{ padding: 10px 14px; border-radius: 12px; }

.btn-primary{
  border: none;
  background: linear-gradient(135deg, var(--accent), #000000);
}
.btn-ghost{
  background: rgba(17,24,39,.25);
}
.btn-block{ width:100%; }

.hero{
  position: relative;
  padding: 68px 0 34px;
  overflow:hidden;
  border-bottom: 1px solid rgba(35,48,68,.55);
}

.hero-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 500px at 20% 20%, #e4d33e25, transparent 60%),
    radial-gradient(700px 400px at 70% 25%, #e4d33e49, transparent 60%),
    radial-gradient(900px 700px at 40% 90%, #000000a9, transparent 60%);
  pointer-events:none;
}

.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items:start;
}

.eyebrow{
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .2px;
  margin: 0 0 10px;
}
h1{
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.05;
}
.subhead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 56ch;
}

.cta-row{ display:flex; gap: 12px; flex-wrap: wrap; margin: 8px 0 18px; }

.trust-row{
  display:flex; gap:14px; flex-wrap: wrap;
  padding-top: 8px;
}
.trust-item{
  padding: 12px 14px;
  border: 1px solid rgba(35,48,68,.7);
  border-radius: 16px;
  background: rgba(17,24,39,.35);
  min-width: 150px;
}
.trust-number{ display:block; font-weight: 900; font-size: 1.1rem; }
.trust-label{ color: var(--muted); font-weight: 700; font-size: .9rem; }

.hero-card .card{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(35,48,68,.8);
  background: rgba(17,24,39,.55);
  box-shadow: var(--shadow);
}
.hero-card h2{ margin: 0 0 8px; font-size: 1.25rem; }
.muted{ color: var(--muted); }
.tiny{ font-size: .85rem; }

.bullets{ margin: 12px 0 16px; padding-left: 18px; color: var(--text); }
.bullets li{ margin: 8px 0; color: #dbeafe; }

.section{
  padding: 56px 0;
}
.section.alt{
  background: rgba(15,23,42,.55);
  border-top: 1px solid rgba(35,48,68,.5);
  border-bottom: 1px solid rgba(35,48,68,.5);
}
.section h3{
  margin: 0 0 14px;
  font-size: 1.5rem;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mini-card{
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(35,48,68,.7);
  background: rgba(17,24,39,.45);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.mini-card h4{ margin: 0 0 8px; }
.mini-card p{ margin: 0; color: var(--muted); line-height: 1.6; }

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step{
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(35,48,68,.7);
  background: rgba(17,24,39,.35);
  display:flex; gap:12px;
}
.step span{
  width:36px; height:36px; border-radius: 14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--accent), #000000);
  font-weight: 900;
}
.step p{ margin:0; color: var(--muted); line-height: 1.5; }
.step b{ color: var(--text); }

.quote{
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(35,48,68,.7);
  background: rgba(17,24,39,.45);
}
.quote p{ margin: 0 0 10px; font-size: 1.05rem; line-height: 1.6; }

.about{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items:start;
}
.about-box{
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(35,48,68,.7);
  background: rgba(17,24,39,.35);
}
.about-box p{ margin: 0 0 10px; }
.about-box p:last-child{ margin:0; }

.contact .form{
  margin-top: 14px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(35,48,68,.7);
  background: rgba(17,24,39,.35);
  max-width: 720px;
}
.form .row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(35,48,68,.85);
  background: rgba(11,15,23,.55);
  color: var(--text);
  outline:none;
}
textarea{ min-height: 120px; resize: vertical; margin-top: 10px; }
input:focus, textarea:focus{
  border-color: rgba(124,58,237,.8);
  box-shadow: 0 0 0 4px rgba(124,58,237,.12);
}
.form button{ margin-top: 12px; }

.footer{
  padding: 26px 0;
  border-top: 1px solid rgba(35,48,68,.6);
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between; gap: 14px;
}
.footer-links{ display:flex; gap: 14px; }
.footer-links a{ color: var(--muted); font-weight: 700; }
.footer-links a:hover{ color: var(--text); }

/* Responsive */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .about{ grid-template-columns: 1fr; }
  .nav-toggle{ display:inline-block; }
  .nav-links{
    display:none;
    position:absolute;
    right: 4vw; top: 64px;
    width: min(360px, 92vw);
    flex-direction: column;
    padding: 12px;
    gap: 10px;
    border-radius: 16px;
    border: 1px solid rgba(35,48,68,.85);
    background: rgba(11,15,23,.92);
    box-shadow: var(--shadow);
  }
  .nav-links.open{ display:flex; }
  .form .row{ grid-template-columns: 1fr; }
}
