html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border, #E5E7EB);
  backdrop-filter: blur(16px);
}

.nav-brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-image {
  display: block;
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--muted, #6B7280);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--cyan, #4A8FE2);
}

.nav-links a.active,
.nav-links a.nav-active {
  color: var(--cyan, #4A8FE2);
  font-weight: 600;
}

footer {
  background: var(--navy, #1E293B);
  color: rgba(255,255,255,0.7);
  padding: 56px 48px 32px;
  font-size: 13px;
}

.footer-inner,
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo-wrap {
  margin-bottom: 16px;
}

.footer-logo-image {
  display: block;
  height: 34px;
  width: auto;
}

.footer-brand p {
  max-width: 260px;
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.65;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 9px;
}

.footer-col a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 12.5px;
  transition: color 0.2s;
}

.footer-text {
  color: rgba(255,255,255,0.55);
  font-size: 12.5px;
  line-height: 1.5;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-badge-wrap {
  padding: 24px 0 0;
  text-align: center;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
}

.footer-badge-text {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-align: left;
}

.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom--single {
  justify-content: center;
  text-align: center;
}

.calendly-badge-widget {
  right: 18px !important;
  bottom: 18px !important;
}

.calendly-badge-content {
  min-width: 168px !important;
  height: 56px !important;
  border-radius: 999px !important;
  box-shadow: 0 12px 28px rgba(30, 41, 59, 0.18) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

@media (max-width: 1120px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .footer-inner,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .calendly-badge-widget {
    display: none !important;
  }
}
