a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

@media (min-width:768px) {
  .container {
    padding: 0 24px;
  }
}

.hero {
  box-sizing: border-box;
  background: #0a3d62;
  color: #fff;
  padding: 64px 0 96px;
  text-align: center;
}

.hero-kicker {
  color: #FBBF24;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-size: 16px;
  box-sizing: border-box;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 900;
  text-shadow: 0 10px 24px rgba(0,0,0,.25);
}

.hero p {
  margin: 0 auto 28px;
  max-width: 900px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
  box-sizing: border-box;
}

@media (min-width:768px) {
  .hero h1 {
    font-size: 56px;
  }
}

@media (min-width:768px) {
  .hero p {
    font-size: 22px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FBBF24;
  color: #0a3d62;
  font-weight: 800;
  font-size: 18px;
  padding: 14px 28px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-sizing: border-box;
}

.btn:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 20px 46px rgba(0,0,0,.28);
  filter: saturate(1.05);
}

