:root{
  --bg:#dbe2ee;
  --page:#f7f8fc;
  --blue:#194f97;
  --blue-dark:#163a72;
  --text:#20314f;
  --muted:#58657d;
  --line:#d9dfeb;
  --card:#f2f5fb;
  --yellow:#f6d246;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Inter', Arial, sans-serif;
}
.page{
  width:min(1080px, calc(100% - 36px));
  margin:32px auto;
  background:var(--page);
  box-shadow:0 14px 36px rgba(26,39,67,.10);
}
.container{
  width:min(940px, calc(100% - 40px));
  margin:0 auto;
}
.topbar{
  background:rgba(255,255,255,.75);
  border-bottom:1px solid rgba(217,223,235,.8);
}
.topbar-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.nav{
  display:flex;
  gap:36px;
  flex-wrap:wrap;
}
.nav a, .footer a{
  color:var(--blue-dark);
  text-decoration:none;
}
.nav a{
  font-size:15px;
  font-weight:500;
}
.hero{
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.55), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(255,255,255,.28), transparent 20%),
    linear-gradient(180deg, #eef3fb 0%, #e5ebf7 48%, #dce5f4 100%);
}
.hero-inner{
  text-align:center;
  padding:92px 0 88px;
}
h1, .section-title{
  font-family:'Cormorant Garamond', Georgia, serif;
  font-style:italic;
  font-weight:600;
  letter-spacing:.2px;
}
h1{
  margin:0 0 18px;
  color:var(--blue-dark);
  font-size:clamp(46px, 6vw, 78px);
  line-height:1.03;
}
.hero-subtitle{
  max-width:760px;
  margin:0 auto 34px;
  font-size:18px;
  line-height:1.6;
  color:#334563;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:240px;
  padding:18px 28px;
  background:linear-gradient(180deg, #f7d74a 0%, #efc938 100%);
  color:#183153;
  font-weight:700;
  border-radius:6px;
  text-decoration:none;
  box-shadow:0 8px 18px rgba(38,58,98,.10);
}
.btn-small{
  min-width:auto;
  padding:14px 24px;
}
.section{
  padding:44px 0 22px;
}
.section.alt{
  background:linear-gradient(180deg, #eef3fb 0%, #e6ecf8 100%);
  padding-bottom:34px;
}
.section-title{
  margin:0 0 28px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  color:var(--blue-dark);
  font-size:34px;
  line-height:1.1;
  text-align:center;
}
.section-title::before,
.section-title::after{
  content:"";
  height:1px;
  flex:1 1 120px;
  background:var(--line);
}
.cards{
  display:grid;
  gap:18px;
}
.cards-4{
  grid-template-columns:repeat(4, 1fr);
}
.cards-2{
  grid-template-columns:repeat(2, 1fr);
}
.card{
  background:var(--card);
  border:1px solid #e4e9f4;
  border-radius:10px;
  box-shadow:0 2px 0 rgba(255,255,255,.6) inset;
}
.audience-card{
  text-align:center;
  padding:24px 18px 22px;
}
.icon{
  width:74px;
  height:74px;
  margin:0 auto 10px;
  display:grid;
  place-items:center;
  font-size:44px;
}
.card h3{
  margin:0 0 10px;
  color:var(--blue-dark);
  font-size:18px;
  line-height:1.3;
}
.card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.55;
}
.step-card, .benefit-card{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:22px 22px 20px;
}
.step-num, .check{
  flex:0 0 auto;
  width:32px;
  height:32px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--yellow);
  color:var(--blue-dark);
  font-weight:700;
}
.cta{
  background:linear-gradient(180deg, #f7f9fd 0%, #eef3fb 100%);
  padding:52px 0 62px;
  border-top:1px solid var(--line);
}
.cta-inner{
  text-align:center;
}
.cta p{
  margin:-6px 0 28px;
  color:#3f5273;
  font-size:18px;
}
.footer{
  background:linear-gradient(180deg, #1e5aa8 0%, #174b8d 100%);
  padding:18px 0;
}
.footer-inner{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  color:#e8f0ff;
  font-size:14px;
}
.footer a{
  color:#e8f0ff;
}
@media (max-width: 900px){
  .cards-4{grid-template-columns:repeat(2, 1fr)}
}
@media (max-width: 680px){
  .page{width:min(100%, calc(100% - 12px)); margin:8px auto}
  .container{width:min(100%, calc(100% - 20px))}
  .topbar-inner{padding:12px 0}
  .nav{gap:18px}
  .cards-2, .cards-4{grid-template-columns:1fr}
  .section-title{font-size:28px}
  .section-title::before, .section-title::after{display:none}
  .hero-inner{padding:66px 0}
  h1{font-size:44px}
}
