.site-header {
  padding: 14px 0;
}

.site-header-bar {
  min-height: 72px;
  padding: 12px 14px 12px 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 28px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(16, 73, 118, 0.14);
}

.site-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(16, 73, 118, 0.05);
  border: 1px solid rgba(16, 73, 118, 0.08);
}

.site-nav-link {
  padding: 10px 16px;
  border-radius: 999px;
  color: #5b6675;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav-link:hover {
  color: #104976;
  background: rgba(16, 73, 118, 0.08);
  transform: translateY(-1px);
}

.site-nav-link.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #104976 0%, #123250 100%);
  box-shadow: 0 14px 28px rgba(16, 73, 118, 0.22);
}

.site-menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(16, 73, 118, 0.12);
  background: linear-gradient(135deg, rgba(16, 73, 118, 0.08) 0%, rgba(255, 107, 0, 0.08) 100%);
  color: #104976;
  box-shadow: 0 14px 30px rgba(16, 73, 118, 0.08);
}

.site-mobile-shell {
  max-width: 380px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.site-mobile-header {
  padding: 18px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.site-mobile-title {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
}

.site-mobile-close {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #f8fafc;
  color: #475569;
}

.site-mobile-nav {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.site-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f8fafc;
  color: #334155;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-mobile-link:hover {
  background: #eef4f9;
  color: #104976;
  transform: translateY(-1px);
}

.site-mobile-link.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #104976 0%, #123250 100%);
  box-shadow: 0 18px 30px rgba(16, 73, 118, 0.18);
}

.site-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-eyebrow-light {
  border-color: rgba(16, 73, 118, 0.08);
  background: rgba(16, 73, 118, 0.06);
  color: #ff6b00;
}

.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-btn:hover {
  transform: translateY(-1px);
}

.site-btn-primary {
  background: #ff6b00;
  color: #ffffff;
  box-shadow: 0 18px 35px rgba(255, 107, 0, 0.2);
}

.site-btn-primary:hover {
  background: #e86100;
}

.site-btn-dark {
  background: #104976;
  color: #ffffff;
  box-shadow: 0 18px 35px rgba(16, 73, 118, 0.18);
}

.site-btn-dark:hover {
  background: #0d3d62;
}

.site-btn-ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.site-btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-btn-ghost-dark {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  color: #334155;
}

.site-btn-ghost-dark:hover {
  background: #f8fafc;
}

.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 56px 0 28px;
}

.site-footer-brand img {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

.site-footer-copy-text {
  max-width: 280px;
  font-size: 14px;
  line-height: 1.8;
}

.site-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.site-social-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(148, 163, 184, 0.1);
  color: #e2e8f0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.site-social-link:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.site-footer-heading {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}

.site-footer-links {
  display: grid;
  gap: 12px;
  font-size: 14px;
}

.site-footer-links a,
.site-footer-links li {
  color: inherit;
}

.site-footer-links a:hover {
  color: #ffffff;
}

.site-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
}

.site-footer-divider {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  margin-top: 36px;
  padding-top: 24px;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1023px) {
  .site-header {
    padding: 12px 0;
  }

  .site-header-bar {
    padding: 12px 12px 12px 18px;
    border-radius: 24px;
  }
}
