*{box-sizing:border-box}

:root{
  --bg:#07111f;
  --deep:#03070d;
  --card:#0d1b2e;
  --card2:#102640;
  --line:#223a5e;
  --gold:#f7c948;
  --gold2:#ffd76b;
  --text:#fff;
  --muted:#c9d4e4;
  --soft:#8fa3bf;
}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:radial-gradient(circle at top left,#14325d 0,#07111f 38%,#03070d 100%);
  color:var(--text);
}

a{text-decoration:none;color:inherit}

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(7,17,31,.94);
  border-bottom:1px solid rgba(247,201,72,.16);
  backdrop-filter:blur(10px);
}

.nav{
  width:min(1180px,calc(100% - 32px));
  min-height:78px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
}

.brand-mark{
  width:46px;
  height:46px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#07111f;
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:24px;
}

.brand strong{display:block}
.brand small{display:block;color:var(--muted);font-size:12px;margin-top:3px}

.nav-links{
  display:flex;
  align-items:center;
  gap:22px;
  color:var(--muted);
  font-weight:800;
  font-size:14px;
}

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

.nav-cta{
  background:var(--gold);
  color:#07111f!important;
  padding:11px 16px;
  border-radius:999px;
}

.wrap,
.section{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
}

.hero-section{
  min-height:calc(100vh - 78px);
  display:flex;
  align-items:center;
  padding:50px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:36px;
  align-items:center;
}

.badge{
  display:inline-block;
  color:var(--gold);
  letter-spacing:.12em;
  font-weight:900;
  font-size:13px;
  text-transform:uppercase;
  margin-bottom:14px;
}

h1,h2,h3,p{margin-top:0}

h1{
  font-size:clamp(42px,5vw,68px);
  line-height:.98;
  letter-spacing:-.055em;
  margin-bottom:20px;
}

h1 span,
h2 span{color:var(--gold)}

h2{
  font-size:clamp(34px,4vw,52px);
  line-height:1;
  letter-spacing:-.04em;
  margin-bottom:16px;
}

h3{font-size:22px;margin-bottom:10px}

.sub,
.muted,
.section-heading p,
.product-card p,
.step p{
  color:var(--muted);
  line-height:1.65;
  font-size:18px;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:30px 0 24px;
}

.btn{
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

.btn.primary{
  background:var(--gold);
  color:#07111f;
}

.btn.secondary{
  border:1px solid rgba(255,255,255,.22);
  color:white;
  background:rgba(255,255,255,.06);
}

.pillrow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.pillrow span{
  border:1px solid rgba(247,201,72,.38);
  color:var(--gold);
  padding:8px 11px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  background:rgba(247,201,72,.07);
}

.hero-image-wrap{
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(247,201,72,.35);
  box-shadow:0 30px 100px rgba(0,0,0,.55);
  background:#07111f;
}

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

.section{
  padding:82px 0;
}

.section-heading{
  max-width:760px;
  margin-bottom:34px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.product-card,
.card,
.extra-box,
.notice,
.checklist,
.step{
  background:rgba(13,27,46,.88);
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:0 18px 60px rgba(0,0,0,.25);
}

.product-card{
  padding:28px;
}

.icon{
  width:54px;
  height:54px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:rgba(247,201,72,.12);
  border:1px solid rgba(247,201,72,.28);
  font-size:26px;
  margin-bottom:18px;
}

.dark-panel{
  width:min(1180px,calc(100% - 32px));
  background:linear-gradient(135deg,rgba(13,27,46,.94),rgba(7,17,31,.94));
  border:1px solid var(--line);
  border-radius:34px;
  padding:58px;
}

.steps{
  display:grid;
  gap:16px;
}

.step{
  display:flex;
  gap:18px;
  padding:22px;
}

.step span{
  flex:0 0 52px;
  height:52px;
  border-radius:18px;
  background:var(--gold);
  color:#07111f;
  display:grid;
  place-items:center;
  font-weight:900;
}

.requirement-grid,
.form-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:34px;
  align-items:start;
}

.checklist{
  padding:24px;
}

.checklist div{
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:#dbeafe;
  font-weight:800;
}

.checklist div:last-child{border-bottom:0}

.form-section{
  padding-top:40px;
}

.card{
  padding:24px;
}

label{
  display:block;
  color:var(--muted);
  font-weight:900;
  font-size:13px;
  margin-bottom:7px;
}

input,
select,
textarea{
  width:100%;
  margin-bottom:14px;
  padding:13px;
  border-radius:10px;
  border:1px solid #355173;
  background:#07111f;
  color:white;
  font-size:15px;
}

button{
  width:100%;
  padding:15px;
  border:0;
  border-radius:12px;
  background:var(--gold);
  color:#07111f;
  font-weight:900;
  font-size:16px;
  cursor:pointer;
}

.notice{
  margin-top:22px;
  padding:18px;
  color:var(--muted);
  line-height:1.6;
}

.notice strong{color:var(--gold)}

footer{
  border-top:1px solid rgba(247,201,72,.16);
  color:var(--soft);
  padding:30px 20px;
  text-align:center;
  background:#03070d;
}

@media(max-width:980px){
  .nav-links{display:none}
  .hero-grid,
  .product-grid,
  .requirement-grid,
  .form-grid{
    grid-template-columns:1fr;
  }

  .dark-panel{
    padding:34px 22px;
  }
}
