
:root{
  --dark:#0c1f33;
  --gold:#d4af37;
  --gray:#6b7280;
  --bg:#f8fafc;
}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial;
  background:#ffffff;
  color:#1f2937;
  line-height:1.8;
}
.wrapper{
  max-width:1200px;
  margin:auto;
  padding:24px;
}
.hero{
  padding:90px 0;
  background:linear-gradient(180deg,#f5f9ff 0%,#ffffff 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:50px;
  align-items:center;
}
.hero h1{
  font-size:42px;
  color:var(--dark);
  margin-bottom:20px;
}
.hero p{
  font-size:19px;
  color:#4b5563;
}
.tag{
  display:inline-block;
  padding:8px 20px;
  border-radius:30px;
  background:rgba(212,175,55,.15);
  color:var(--gold);
  font-weight:600;
  margin-bottom:18px;
}
.hero img{
  width:100%;
  border-radius:22px;
}
section{
  margin-top:110px;
}
h2{
  font-size:34px;
  color:var(--dark);
  margin-bottom:20px;
}
h3{
  font-size:22px;
  color:var(--gold);
}
p{
  font-size:17px;
  color:#374151;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  margin-top:40px;
}
.card{
  background:#fff;
  border-radius:20px;
  padding:30px;
  box-shadow:0 20px 50px rgba(0,0,0,.06);
}
.image-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
  margin-top:40px;
}
.image-grid img{
  width:100%;
  border-radius:18px;
}
.highlight{
  color:var(--gold);
  font-weight:600;
}
.cta{
  margin-top:120px;
  background:var(--dark);
  padding:80px 40px;
  border-radius:28px;
  text-align:center;
}
.cta h2{
  color:#fff;
}
.cta p{
  color:#d1d5db;
  font-size:18px;
}
.cta a{
  display:inline-block;
  margin-top:30px;
  padding:18px 46px;
  background:linear-gradient(135deg,#d4af37,#f5e3a1);
  color:#000;
  font-weight:700;
  border-radius:40px;
  text-decoration:none;
}
@media(max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .hero h1{font-size:32px}
}
