:root{
  --navy:#070c18;
  --navy2:#0a1330;

  --text:#eef2ff;
  --muted:#b8c0df;

  --gold:#d7b05a;
  --gold2:#f1d48a;

  --line: rgba(255,255,255,.12);

  --shadow: 0 20px 70px rgba(0,0,0,.45);
  --shadowSoft: 0 10px 40px rgba(0,0,0,.18);

  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  line-height: 1.55;

  background:
    radial-gradient(900px 520px at 50% 10%, rgba(241,212,138,.18), transparent 55%),
    radial-gradient(760px 520px at 50% 30%, rgba(215,176,90,.12), transparent 60%),
    radial-gradient(900px 700px at 85% 10%, rgba(80,120,255,.10), transparent 60%),
    radial-gradient(900px 700px at 15% 20%, rgba(255,255,255,.05), transparent 60%),
    linear-gradient(180deg, var(--navy), var(--navy2));
}

a{ color:inherit; text-decoration:none; }
.container{ max-width:1120px; margin:0 auto; padding:0 20px; }

.tiny{ font-size:.9rem; }
.muted{ color:var(--muted); }

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,12,24,.60);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 220px;
}
.brand-logo{
  width:32px;
  height:32px;
  border-radius:999px;
  object-fit:contain;
  filter: drop-shadow(0 10px 30px rgba(215,176,90,.18));
}
.brand-name{ font-weight:900; letter-spacing:.2px; }
.brand-name span{ font-weight:650; color:var(--muted); }

/* Nav */
.nav{ display:flex; align-items:center; gap:18px; }
.nav a{ color:var(--muted); font-weight:750; }
.nav a:hover{ color:var(--text); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  font-weight:850;
  letter-spacing:.2px;
  border:1px solid rgba(215,176,90,.45);
  background: linear-gradient(180deg, rgba(241,212,138,.14), rgba(215,176,90,.06));
  box-shadow: 0 14px 40px rgba(215,176,90,.14);
  transition: transform .12s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-small{ padding:10px 14px; font-size:.95rem; }
.btn-ghost{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  box-shadow:none;
}

@media (max-width: 980px){
  .nav{ display:none; }
}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  padding:72px 0 54px;
  border-bottom: 1px solid var(--line);
}
.hero {
  background: 
    linear-gradient(rgba(5,10,20,0.92), rgba(5,10,20,0.97)),
    url("hero-bg.png") center/cover no-repeat;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 30% 20%, rgba(241,212,138,.20), transparent 60%),
    linear-gradient(90deg, rgba(7,12,24,.92) 0%, rgba(7,12,24,.72) 55%, rgba(7,12,24,.88) 100%);
  z-index:1;
}
.hero-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:24px;
  align-items:start;
}
@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-bg{ opacity:.18; }
}

.hero-eyebrow{
  color: var(--gold2);
  letter-spacing:.24em;
  text-transform:uppercase;
  font-weight:900;
  font-size:.86rem;
  margin:0 0 10px;
}
.hero-title{
  margin:0 0 12px;
  font-size: clamp(2.3rem, 3.8vw, 3.8rem);
  line-height:1.05;
  letter-spacing:-.02em;
}
.accent{ color: var(--gold2); }
.hero-lead{
  margin:0 0 18px;
  color: var(--muted);
  font-size:1.08rem;
  max-width:62ch;
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 22px; }

.hero-trust{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
@media (max-width: 680px){
  .hero-trust{ grid-template-columns:1fr; }
}
.trust-card{
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px;
  background: rgba(255,255,255,.035);
  box-shadow: var(--shadowSoft);
}
.trust-title{ font-weight:900; font-size:.95rem; }
.trust-text{ color:var(--muted); font-weight:650; font-size:.92rem; }

.hero-right{
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(600px 260px at 50% 0%, rgba(241,212,138,.16), transparent 55%),
    rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  padding:18px;
  position:sticky;
  top:88px;
}
@media (max-width: 980px){
  .hero-right{ position:relative; top:auto; }
}
.hero-badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(215,176,90,.35);
  background: rgba(215,176,90,.08);
  color: var(--gold2);
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:.78rem;
}
.hero-mini{
  margin-top:14px;
  display:grid;
  gap:10px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
@media (max-width: 520px){
  .hero-mini{ grid-template-columns:1fr; }
}
.mini-item{
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px;
  background: rgba(7,12,24,.28);
}
.mini-num{
  color: var(--gold2);
  font-weight:900;
  letter-spacing:.18em;
  font-size:.85rem;
}
.mini-text{ margin-top:6px; font-weight:900; }
.hero-note{
  margin-top:12px;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px;
  background: rgba(255,255,255,.03);
}
.note-title{ font-weight:900; }
.note-text{ margin-top:6px; color:var(--muted); font-weight:650; }

/* Sections */
.section{ padding:62px 0; }
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head h2{ margin:0 0 8px; font-size:1.95rem; }
.section-head p{ margin:0; color:var(--muted); max-width:72ch; }

/* Layout grids */
.grid-3{
  margin-top:22px;
  display:grid;
  gap:14px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.grid-2{
  margin-top:22px;
  display:grid;
  gap:14px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (max-width: 980px){
  .grid-3, .grid-2{ grid-template-columns:1fr; }
}

/* Card */
.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  padding:18px;
  box-shadow: var(--shadowSoft);
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0 0 10px; color:var(--muted); }
.card ul{ margin:0; padding-left:18px; }
.card li{ margin:6px 0; color:var(--muted); font-weight:650; }

/* Steps */
.steps{ margin-top:22px; display:grid; gap:12px; }
.step{
  display:flex; gap:14px; align-items:flex-start;
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:16px;
  box-shadow: var(--shadowSoft);
}
.step-num{
  width:34px; height:34px;
  border-radius:999px;
  display:grid; place-items:center;
  font-weight:900;
  color: var(--gold2);
  border:1px solid rgba(215,176,90,.35);
  background: rgba(215,176,90,.08);
}
.step h3{ margin:0 0 6px; }
.step p{ margin:0; color:var(--muted); font-weight:650; }

/* PRICING — IMPORTANT: 5 cards safe layout */
.pricing-grid{
  margin-top:22px;
  display:grid;
  gap:14px;
  grid-template-columns: repeat(12, minmax(0,1fr));
}
.pricing-card{
  grid-column: span 4;
  display:block;
  border-radius: calc(var(--radius) + 2px);
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(650px 260px at 50% 0%, rgba(241,212,138,.14), transparent 60%),
    rgba(255,255,255,.03);
  padding:18px;
  box-shadow: var(--shadowSoft);
  transition: transform .12s ease, border-color .12s ease;
}
.pricing-card:hover{
  transform: translateY(-2px);
  border-color: rgba(241,212,138,.35);
}
.pricing-card.featured{
  border-color: rgba(215,176,90,.45);
  background:
    radial-gradient(700px 280px at 50% 0%, rgba(241,212,138,.22), transparent 60%),
    rgba(255,255,255,.03);
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
}
.pricing-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.pricing-eyebrow{
  color: var(--gold2);
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:900;
  font-size:.78rem;
  margin-bottom:6px;
}
.pricing-card h3{ margin:0 0 6px; }
.pricing-card p{ margin:0; color:var(--muted); font-weight:650; }
.pricing-price{ text-align:right; }
.pricing-amount{ font-weight:900; font-size:1.5rem; letter-spacing:-.01em; }
.pricing-note{ color:var(--muted); font-weight:700; font-size:.92rem; margin-top:2px; }

.pricing-card ul{ margin:14px 0 0; padding-left:18px; }
.pricing-card li{ margin:7px 0; color:var(--muted); font-weight:650; }

.pricing-cta{
  margin-top:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.chip{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  border:1px solid rgba(215,176,90,.45);
  background: linear-gradient(180deg, rgba(241,212,138,.14), rgba(215,176,90,.06));
  box-shadow: 0 14px 40px rgba(215,176,90,.12);
}
.hint{ color: rgba(255,255,255,.55); font-weight:750; font-size:.9rem; }

@media (max-width: 1100px){
  .pricing-card{ grid-column: span 6; }
}
@media (max-width: 720px){
  .pricing-card{ grid-column: span 12; }
}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:22px 0 34px;
  color:var(--muted);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer-brand{ font-weight:900; color:var(--text); }
.footer-links{ display:flex; gap:14px; flex-wrap:wrap; }
.footer-links a{ color:var(--muted); font-weight:750; }
.footer-links a:hover{ color:var(--text); }