
:root{
  --bg: #0b1220;
  --bg2:#0f1a2e;
  --card:#0f1a2e;
  --text:#eaf0ff;
  --muted: rgba(234,240,255,.72);
  --line: rgba(234,240,255,.14);
  --brand:#f3b300; /* matches your logo yellow */
  --brand2:#5fe1ff;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.18) 0, transparent 2px),
    radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,.14) 0, transparent 2px),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,.12) 0, transparent 2px),
    radial-gradient(1200px 600px at 20% 10%, rgba(106,163,255,.18), transparent 55%),
    radial-gradient(900px 500px at 80% 0%, rgba(243,179,0,.16), transparent 55%),
    linear-gradient(180deg, var(--bg), #050913 85%);
}

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

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background: rgba(5,9,19,.55);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{display:flex; align-items:center; gap:12px}
.logo{height:44px; width:auto; display:block}
.logo.small{height:30px}

.nav{
  display:flex; gap:18px;
  font-size:14px;
  color:var(--muted);
}
.nav a{padding:8px 10px; border-radius:12px}
.nav a:hover{background:rgba(234,240,255,.06); color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  font-weight:650;
  font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .06s ease, opacity .2s ease, background .2s ease, border-color .2s ease;
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background:linear-gradient(135deg, var(--brand), #ffd56a);
  color:#141414;
}
.btn-secondary{
  background:rgba(106,163,255,.14);
  border-color:rgba(106,163,255,.35);
}
.btn-ghost{
  background:transparent;
  border-color:rgba(234,240,255,.18);
  color:var(--text);
}
.btn:hover{opacity:.95}

.hero{
  padding:54px 0 28px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:26px;
  align-items:stretch;
}

.badge{
  display:inline-flex;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(243,179,0,.35);
  background:rgba(243,179,0,.10);
  color:rgba(255,231,164,.95);
  font-weight:650;
  font-size:13px;
}

h1{
  margin:14px 0 10px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.lead{
  margin:0;
  font-size:16px;
  color:var(--muted);
  line-height:1.6;
  max-width:56ch;
}

.hero-cta{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}

.trust{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-top:22px;
}
.trust-item{
  background:rgba(234,240,255,.06);
  border:1px solid rgba(234,240,255,.10);
  border-radius:16px;
  padding:12px 14px;
  min-width:140px;
}
.trust-kpi{font-weight:800; letter-spacing:-.01em}
.trust-label{font-size:13px; color:var(--muted); margin-top:4px}

.hero-card{
  background:linear-gradient(180deg, rgba(15,26,46,.92), rgba(15,26,46,.70));
  border:1px solid rgba(234,240,255,.14);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.hero-card h2{margin:0 0 6px; font-size:18px}
.muted{color:var(--muted)}
.tiny{font-size:12px}

.contact-list{list-style:none; padding:0; margin:12px 0 14px}
.contact-list li{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 0;
  border-bottom:1px dashed rgba(234,240,255,.14);
}
.contact-list li:last-child{border-bottom:none}
.contact-list span:first-child{color:var(--muted)}

.section{padding:44px 0}
.section.alt{
  background:linear-gradient(180deg, rgba(106,163,255,.08), transparent 60%);
  border-top:1px solid rgba(234,240,255,.10);
  border-bottom:1px solid rgba(234,240,255,.10);
}
.section-head{margin-bottom:18px}
.section-head h2{margin:0; font-size:26px}
.section-head p{margin:8px 0 0}

.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.card{
  background:rgba(15,26,46,.72);
  border:1px solid rgba(234,240,255,.14);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.20);
}
.card h3{margin:0 0 8px; font-size:17px}
.card p{margin:0; color:var(--muted); line-height:1.6}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
.lead2{color:var(--muted); line-height:1.7; margin-top:10px}
.bullets{
  margin:14px 0 0;
  color:var(--muted);
  line-height:1.75;
}
.panel{
  background: radial-gradient(700px 260px at 10% 0%, rgba(243,179,0,.14), transparent 55%),
              rgba(15,26,46,.72);
  border:1px solid rgba(234,240,255,.14);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}

.contact-box{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:14px;
}
.contact-box .label{color:var(--muted); font-size:12px; margin-bottom:6px}

.form h3{margin-top:0}
label{display:block; font-size:13px; color:var(--muted); margin:10px 0}
input, textarea{
  width:100%;
  margin-top:6px;
  padding:11px 12px;
  border-radius:14px;
  border:1px solid rgba(234,240,255,.16);
  background:rgba(5,9,19,.35);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(243,179,0,.55);
  box-shadow: 0 0 0 4px rgba(243,179,0,.10);
}

.site-footer{
  padding:22px 0 34px;
  border-top:1px solid rgba(234,240,255,.10);
  background: rgba(5,9,19,.35);
}
.footer-inner{display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap}
.footer-left{display:flex; align-items:center; gap:12px}
.footer-title{font-weight:800; letter-spacing:-.01em}

/* Responsive */
@media (max-width: 980px){
  .grid{grid-template-columns: repeat(2, 1fr)}
  .hero-inner{grid-template-columns: 1fr}
  .split{grid-template-columns:1fr}
  .contact-box{grid-template-columns:1fr}
  .nav{display:none}
}
