*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:Arial,Helvetica,sans-serif;background:#070707;color:white}
a{color:inherit;text-decoration:none}

.topbar{
  position:sticky;
  top:0;
  z-index:20;
  min-height:74px;
  padding:18px 6%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,.88);
  border-bottom:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
}

.logo{
  font-size:30px;
  font-weight:900;
  letter-spacing:7px;
  background:linear-gradient(90deg,#fff,#bfbfbf,#fff);
  -webkit-background-clip:text;
  color:transparent;
}

nav{
  display:flex;
  gap:24px;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:1px;
  color:#dedede;
}

.flyer-zone{
  padding:34px 5% 70px;
  background:
    radial-gradient(circle at top right,rgba(255,255,255,.16),transparent 32%),
    linear-gradient(135deg,#050505,#1d1d1d 52%,#323232);
}

.flyer-wrap{
  max-width:980px;
  margin:0 auto;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 35px 90px rgba(0,0,0,.65);
  border:1px solid rgba(255,255,255,.18);
  background:#111;
}

.flyer-img{
  display:block;
  width:100%;
  height:auto;
}

.action-bar{
  max-width:980px;
  margin:28px auto 0;
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.btn{
  padding:18px 30px;
  border-radius:7px;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.8px;
  min-width:220px;
  text-align:center;
}

.btn-white{
  background:#fff;
  color:#050505;
  box-shadow:0 16px 38px rgba(255,255,255,.14);
}

.btn-outline{
  border:1px solid rgba(255,255,255,.65);
  color:#fff;
}

.quick-offers{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  background:#efefef;
  padding:60px 6%;
}

.offer-card{
  background:#fff;
  color:#111;
  border-radius:24px;
  padding:42px;
  box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.offer-card.silver{
  background:linear-gradient(145deg,#fff,#d3d3d3);
}

.offer-card span{
  color:#aaa;
  font-weight:900;
  letter-spacing:5px;
}

.offer-card h2{
  font-size:42px;
  text-transform:uppercase;
  margin:12px 0 18px;
}

.offer-card p{
  display:inline-block;
  background:#111;
  color:#fff;
  padding:15px 20px;
  border-radius:8px;
  margin-bottom:24px;
  font-size:20px;
}

.offer-card strong{
  font-size:28px;
}

.offer-card a{
  display:block;
  width:max-content;
  background:#111;
  color:#fff;
  padding:14px 18px;
  border-radius:6px;
  text-transform:uppercase;
  font-weight:900;
  font-size:14px;
}

.forms{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  padding:75px 6%;
  background:linear-gradient(145deg,#111,#050505);
}

.form-card{
  scroll-margin-top:95px;
  background:#f7f7f7;
  color:#111;
  border-radius:24px;
  padding:38px;
  box-shadow:0 28px 70px rgba(0,0,0,.4);
}

.form-card h2{
  font-size:33px;
  text-transform:uppercase;
  margin-bottom:8px;
}

.form-card p{
  color:#555;
  margin-bottom:24px;
}

.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

label{
  display:block;
  font-weight:800;
  margin-bottom:14px;
}

input{
  display:block;
  width:100%;
  margin-top:7px;
  padding:15px;
  border:1px solid #c6c6c6;
  border-radius:8px;
  background:#fff;
  color:#111;
  font-size:16px;
}

button{
  width:100%;
  margin-top:8px;
  padding:18px;
  border:0;
  border-radius:8px;
  background:#050505;
  color:#fff;
  text-transform:uppercase;
  font-weight:900;
  font-size:15px;
  cursor:pointer;
}

footer{
  background:#000;
  text-align:center;
  padding:42px 6%;
  color:#d4d4d4;
  line-height:1.8;
}

.footer-logo{
  color:#fff;
  font-size:34px;
  font-weight:900;
  letter-spacing:8px;
}

footer a{
  font-weight:900;
}

@media(max-width:850px){
  .topbar{position:relative;flex-direction:column;gap:14px}
  nav{gap:14px;flex-wrap:wrap;justify-content:center}
  .flyer-zone{padding:18px 12px 45px}
  .flyer-wrap{border-radius:16px}
  .quick-offers,.forms{grid-template-columns:1fr;padding:42px 20px}
  .grid{grid-template-columns:1fr}
  .offer-card,.form-card{padding:28px}
  .offer-card h2{font-size:32px}
}
