:root {
  --bg: #050301;
  --bg2: #120c04;
  --panel: rgba(255,255,255,.055);
  --text: #f8fafc;
  --muted: #cbbd9f;
  --soft: #f5ecd8;
  --gold: #f7b931;
  --gold2: #d99016;
  --green: #8bed3f;
  --border: rgba(247,185,49,.24);
  --border-soft: rgba(255,255,255,.11);
  --shadow: 0 28px 80px rgba(0,0,0,.48);
  --radius: 26px;
  --max: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 14% 0%, rgba(247,185,49,.15), transparent 32%),
    radial-gradient(circle at 90% 7%, rgba(247,185,49,.10), transparent 34%),
    linear-gradient(180deg, #030201 0%, #100b04 46%, #030201 100%);
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(247,185,49,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,185,49,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 72%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,5,2,.91);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .04em;
}

.logo span { color: var(--gold); }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: #f4ead5;
  font-size: 15px;
}

.nav a:hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: .2s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  color: #130c02;
  box-shadow: 0 16px 40px rgba(247,185,49,.25);
}

.btn-secondary {
  background: rgba(255,255,255,.045);
  border-color: var(--border);
  color: var(--text);
}

.hero { padding: 54px 0 72px; }

.hero-image-wrap {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(247,185,49,.32);
  background: #040302;
  box-shadow: var(--shadow);
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.trust-pill {
  border: 1px solid rgba(247,185,49,.24);
  background: rgba(247,185,49,.055);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  font-weight: 800;
  color: #f5ecd8;
}

.section { padding: 88px 0; }

.section.alt {
  background: rgba(255,255,255,.024);
  border-top: 1px solid rgba(255,255,255,.045);
  border-bottom: 1px solid rgba(255,255,255,.045);
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h1, h2, h3 {
  margin: 0 0 16px;
  line-height: 1.05;
}

h1 { font-size: clamp(42px, 6vw, 76px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.7vw, 30px); }

p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.lead {
  max-width: 900px;
  font-size: clamp(18px, 2.1vw, 22px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.026));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card.featured {
  border-color: rgba(247,185,49,.35);
  box-shadow: 0 28px 80px rgba(247,185,49,.11);
}

.pill {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.pill.gold {
  background: rgba(247,185,49,.15);
  color: var(--gold);
}

.checklist {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  margin: 0 0 14px;
  padding-left: 30px;
  color: #f5ecd8;
  line-height: 1.55;
  font-weight: 700;
}

.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.image-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(247,185,49,.25);
  background: #040302;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.service-tile {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,.045);
}

.service-tile h3 { font-size: 22px; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.proof {
  border: 1px solid rgba(247,185,49,.25);
  background: rgba(247,185,49,.055);
  border-radius: 20px;
  padding: 22px;
}

.proof strong {
  display: block;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 10px;
}

.proof span {
  display: block;
  color: #f5ecd8;
  font-weight: 800;
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.step {
  counter-increment: step;
  position: relative;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,.045);
}

.step:before {
  content: counter(step);
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: #130c02;
  font-weight: 900;
  margin-bottom: 18px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.faq {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,.045);
}

.contact-card {
  background:
    linear-gradient(180deg, rgba(247,185,49,.11), rgba(255,255,255,.035));
  border: 1px solid rgba(247,185,49,.28);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.kicker {
  font-weight: 900;
  color: #f8f1e3;
}

.footer {
  padding: 34px 0 58px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 22px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.small { font-size: 14px; }

.legal {
  max-width: 920px;
  padding: 80px 0;
}

.legal h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.legal h2 {
  font-size: 28px;
  margin-top: 36px;
}

@media (max-width: 980px) {
  .split,
  .cards,
  .service-grid,
  .proof-grid,
  .process,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }
}
