:root {
  --brand-blue: #0b5ed7;
  --brand-yellow: #ffd43b;
  --brand-ink: #1d2a44;
  --bg-soft: #f5f9ff;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Nunito", Arial, sans-serif;
  color: var(--brand-ink);
  background: #ffffff;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  color: var(--brand-blue);
  padding: 0.5rem 0.75rem;
  font-weight: 800;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.2);
}

.topbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e9eef8;
}

.brand-name {
  font-weight: 800;
  color: var(--brand-blue);
}

.navbar .nav-link {
  color: #30425f;
  font-weight: 700;
}

.hero-section {
  background: linear-gradient(180deg, #fefefe 0%, #f8fbff 100%);
}

.hero-kicker {
  display: inline-block;
  background: #e8f1ff;
  color: var(--brand-blue);
  font-weight: 800;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero-image-wrap img {
  border: 5px solid #ffffff;
}

.section-soft {
  background: var(--bg-soft);
}

.section-subtitle {
  color: #455a77;
  max-width: 700px;
  margin: 0 auto;
}

.info-card {
  background: #ffffff;
  border: 1px solid #e5edf9;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 8px 20px rgba(11, 94, 215, 0.05);
}

.info-card h3,
.benefit-item h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0a4db2;
}

.benefit-item + .benefit-item {
  margin-top: 1rem;
}

.btn-ig {
  background: linear-gradient(90deg, #405de6, #833ab4, #e1306c);
  color: #ffffff;
  border: 0;
  font-weight: 800;
}

.btn-ig:hover,
.btn-ig:focus {
  color: #ffffff;
  filter: brightness(1.03);
}

.btn-outline-brand {
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue);
  font-weight: 800;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background: var(--brand-blue);
  color: #ffffff;
}

.cta-box {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  border: 1px solid #e6edfb;
}

footer {
  border-top: 1px solid #e9eef8;
  background: #ffffff;
}

.footer-link {
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration: none;
}

.footer-link:hover,
.footer-link:focus {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(11, 94, 215, 0.45);
  outline-offset: 2px;
  border-radius: 0.5rem;
}

@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}
