/* Header layout (old + new) */
.site-header,
.hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 32px;
}

.logo-text {
  font-size: 52px;
  display: flex;
  align-items: center;
  margin-top: 5px;
  margin-left: 1px;
}

.logo-main {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.4px;
  font-size: 55px;
}

.logo-accent {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  margin-left: 2px;
  color: rgb(26, 115, 232);
}

/* Nav links (old + new) */
.site-nav a,
.nav a,
.nav-link {
  margin-left: 20px;
  text-decoration: none;
  color: black;
  font-size: 16px;
}

/* Shared inner width (old + new) */
.audience-inner,
.services-inner,
.how-inner,
.cta-inner,
.footer-inner,
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Footer (old + new) */
.site-footer,
.ft {
  background-color: rgb(12, 14, 18);
  color: rgb(230, 230, 230);
  padding: 60px 0;
  margin-top: 60px;
}

.footer-inner,
.ft-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand,
.ft-brand {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-text,
.ft-text {
  color: rgb(180, 180, 180);
  max-width: 420px;
  font-size: 14px;
  line-height: 1.6;
}

.ft-accent {
  color: rgb(26, 115, 232);
  font-family: "Plus Jakarta Sans", sans-serif; /* use the same one as logo-accent */
  font-weight: 500;
}


.footer-links,
.ft-links {
  display: flex;
  gap: 18px;
  margin-bottom: 14px;
}

.footer-links a,
.ft-links a {
  color: rgb(230, 230, 230);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.footer-small,
.ft-small {
  color: rgb(160, 160, 160);
  font-size: 13px;
}
