.nav-link { transition: 0.25s ease; }
.nav-link:hover { opacity: 0.65; }

.section-label {
  color: #101C43;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-weight: 900;
  font-size: .75rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.05;
  color: #101C43;
}

.btn-primary, .btn-secondary {
  height: 58px;
  padding: 0 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 900;
  transition: .25s ease;
}

.btn-primary { background: #101C43; color: white; }
.btn-primary:hover { background: #17275A; transform: translateY(-3px); }

.btn-secondary {
  border: 1px solid #101C43;
  color: #101C43;
  background: white;
}
.btn-secondary:hover { background: #101C43; color: white; transform: translateY(-3px); }

.service-card {
  background: #ffffff;
  border: 1px solid #DDE3F0;
  border-radius: 2rem;
  padding: 2rem;
  transition: .3s ease;
  min-height: 315px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 90px rgba(16, 28, 67, .14);
}

.service-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #F6F8FD 100%);
  border-color: #101C43;
}

.service-card div {
  height: 64px;
  width: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #F6F8FD;
  color: #101C43;
  font-size: 1.9rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  color: #101C43;
}

.service-card p {
  margin-top: .75rem;
  color: #64748b;
  line-height: 1.7;
}

.form-input {
  width: 100%;
  border: 1px solid #DDE3F0;
  background: #F6F8FD;
  padding: 1rem;
  border-radius: 1rem;
  outline: none;
  transition: .25s ease;
}

.form-input:focus {
  background: #ffffff;
  border-color: #101C43;
  box-shadow: 0 0 0 4px rgba(16, 28, 67, .10);
}
