:root{
  --primary:#5A9FFF;
  --text:#1E1E2F;
  --bg:#F5F7FB;
  --card:#FFFFFF;
  --gold:#D4A84B;
  --muted:rgba(30,30,47,.68);
  --footer:rgba(30,30,47,.45);
  --shadow:0 12px 30px rgba(30,30,47,.10);
}

*{box-sizing:border-box;}

html,body{height:100%;}

body{
  margin:0;
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

.page{
  max-width:980px;
  margin:0 auto;
  padding:44px 18px 48px;
}

.hero{
  text-align:center;
  padding:6px 0 22px;
}

.brand{
  display:inline-block;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.82rem;
  color:var(--muted);
}

h1{
  margin:10px 0 8px;
  font-family:"Playfair Display",Georgia,"Times New Roman",serif;
  font-weight:700;
  font-size:clamp(2rem,4.8vw,3.1rem);
  letter-spacing:-.02em;
}

.subheading{
  margin:0 auto;
  max-width:52ch;
  color:var(--muted);
  font-size:1.02rem;
}

.cards{
  margin:24px auto 18px;
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:center;
}

.card{
  width:100%;
  max-width:700px;
  background:var(--card);
  border-radius:12px;
  padding:22px 22px 20px;
  box-shadow:var(--shadow);
  border-left:4px solid var(--gold);
}

.icon{
  font-size:2.15rem;
  line-height:1;
  color:var(--gold);
  margin-bottom:12px;
}

.card-title{
  margin:0 0 6px;
  font-size:1.06rem;
  font-weight:700;
  letter-spacing:.01em;
}

.card-text{
  margin:0;
  color:rgba(30,30,47,.78);
  font-size:1rem;
}

.cta{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  padding-top:18px;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:var(--primary);
  color:#fff;
  padding:12px 18px;
  border-radius:999px;
  font-weight:600;
  letter-spacing:.01em;
  min-width:min(320px,100%);
  box-shadow:0 10px 22px rgba(90,159,255,.28);
  transition:transform .15s ease, filter .2s ease, box-shadow .2s ease;
}

.button:hover{
  filter:brightness(.92);
  box-shadow:0 12px 26px rgba(90,159,255,.34);
}

.button:active{
  transform:translateY(1px);
}

.button:focus-visible{
  outline:3px solid rgba(90,159,255,.35);
  outline-offset:3px;
}

.footer{
  font-size:.92rem;
  color:var(--footer);
  text-align:center;
}

@media (min-width:760px){
  .page{padding:56px 22px 56px;}
  .cards{gap:18px;}
  .card{padding:24px 26px 22px;}
}
