:root{
  --bg:#050505;
  --panel:#0b0b0b;
  --panel-2:#111111;
  --line:rgba(212,175,55,.16);
  --gold:#d4af37;
  --gold-2:#f1d76a;
  --text:#f5f5f5;
  --muted:#b8b8b8;
  --shadow:0 18px 40px rgba(0,0,0,.34);
  --radius:24px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at top, rgba(212,175,55,.08), transparent 28%),
    #050505;
  color:var(--text);
  font-family:Georgia,"Times New Roman",serif;
}

a{text-decoration:none;color:inherit}
button,input,textarea{font:inherit}

.container{
  width:min(1120px,calc(100% - 28px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(5,5,5,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(212,175,55,.10);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:.5px;
}

.brand-badge{
  width:48px;
  height:48px;
  border-radius:16px;
  border:1px solid rgba(212,175,55,.22);
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,#101010,#090909);
  color:var(--gold);
  box-shadow:var(--shadow);
}

.brand-name{
  font-size:clamp(28px,4vw,44px);
  font-weight:900;
  line-height:1;
}
.brand-name .bonus{color:var(--gold)}
.brand-name .sa{color:#fff}

.top-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}
.top-nav a{
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(212,175,55,.14);
  background:#0b0b0b;
  color:#eaeaea;
}

.hero{
  padding:34px 0 18px;
}
.hero-card,
.content-card{
  background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,.01));
  border:1px solid var(--line);
  border-radius:30px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-card{
  padding:28px;
}
.eyebrow{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:13px;
  margin-bottom:14px;
  font-weight:700;
}
.hero-title{
  margin:0 0 16px;
  font-size:clamp(38px,7vw,72px);
  line-height:.94;
}
.hero-text{
  margin:0;
  max-width:840px;
  color:#cfcfcf;
  font-size:clamp(18px,2vw,24px);
  line-height:1.6;
}

.grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  padding:18px 0 42px;
}

.content-card{
  padding:24px;
}
.content-card h2{
  margin:0 0 12px;
  font-size:clamp(28px,4vw,42px);
}
.content-card h3{
  margin:22px 0 10px;
  font-size:24px;
}
.content-card p,
.content-card li{
  color:#d3d3d3;
  font-size:18px;
  line-height:1.75;
}
.content-card ul{
  margin:0;
  padding-left:22px;
}
.side-stack{
  display:grid;
  gap:20px;
}

.info-box{
  border:1px solid rgba(212,175,55,.12);
  border-radius:22px;
  padding:20px;
  background:#0b0b0b;
}
.info-box h4{
  margin:0 0 10px;
  color:var(--gold);
  font-size:22px;
}
.info-box p{
  margin:0;
  color:#d0d0d0;
  line-height:1.7;
}

.contact-buttons{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.contact-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:58px;
  border-radius:18px;
  padding:14px 18px;
  border:1px solid rgba(212,175,55,.16);
  background:#0c0c0c;
  color:#fff;
}
.contact-btn.primary{
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
  color:#111;
  font-weight:800;
}

.ssl-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  background:#0d0d0d;
  border:1px solid rgba(212,175,55,.16);
  color:var(--gold-2);
  font-weight:700;
}

.site-footer{
  margin-top:10px;
  padding:28px 0 140px;
  border-top:1px solid rgba(212,175,55,.10);
}
.footer-top{
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:center;
  text-align:center;
}
.footer-logo{
  font-size:46px;
  font-weight:900;
  line-height:1;
}
.footer-logo .bonus{color:var(--gold)}
.footer-logo .sa{color:#fff}
.footer-links,
.footer-legal,
.footer-social{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}
.footer-links a,
.footer-legal a,
.footer-social a{
  color:#d8d8d8;
}
.footer-copy{
  margin-top:10px;
  color:#9f9f9f;
  text-align:center;
}

@media (max-width: 900px){
  .grid{grid-template-columns:1fr}
}

@media (max-width: 640px){
  .site-header .container{
    flex-direction:column;
    align-items:flex-start;
  }
  .top-nav{
    width:100%;
    justify-content:flex-start;
  }
  .top-nav a{
    flex:1 1 calc(50% - 10px);
    text-align:center;
  }
  .hero-card,
  .content-card{
    border-radius:24px;
    padding:20px;
  }
  .contact-btn{
    min-height:56px;
  }
  .site-footer{
    padding-bottom:130px;
  }
}
