@font-face {
  font-family: 'Ubuntu Mono';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/ubuntu-mono-latin-400-normal.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Ubuntu Mono';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/ubuntu-mono-latin-700-normal.woff2') format('woff2');
  font-display: swap;
}
:root {--dark-blue:#23394C;--gold:#D9B400;--white:#ffffff;--badge-height: 104px;}
* {margin:0;padding:0;box-sizing:border-box;}
body {
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  min-height:100svh;
  scroll-behavior: smooth;
}
.background-wrapper {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.background-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  filter: brightness(0.75) saturate(1.1);
}
.container {
  max-width: 920px;
  width: 100%;
  margin: 0.5rem auto 0 5vw;
  background: rgba(35,57,76,0.78);
  padding: 1.8rem 0;
  border-radius: 16px;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .container {
    max-width: 520px;
    padding: 1.4rem 0;
    margin: 0 auto 0;
    border-radius: 0;
  }
}
.header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0 2rem 1.4rem;
}
.header h1 {
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}
.login-link {
  margin-left: auto;
  font-family: 'Ubuntu Mono', monospace;
  font-size: 0.96rem;
  color: #ddd;
  text-decoration: none;
}
.login-link:hover { color: var(--gold); }
.contact-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 2rem;
  margin-top: 2.4rem;
  color: #ffffff;
  font-family: 'Ubuntu Mono', monospace;
  font-size: 1.05rem;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}
.linkedin-header,
.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
}
.linkedin-header svg,
.footer-small-logo {
  height: 24px;
  width: auto;
  flex-shrink: 0;
}
.contact-right {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}
.contact-right a {
  color: #ffffff;
  text-decoration: none;
}
.contact-right a:hover { color: var(--gold); }
.footer-bottom {
  width: 100%;
  margin-top: 1rem;
  text-align: center;
  font-size: 1rem;
  color: #ccc;
}
.footer-bottom a {
  color: #ccc;
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--gold); }

html {
  scroll-behavior: smooth;        /* more reliable than body alone */
}

#services, #about, #pricing {
  scroll-margin-top: 65px;       /* adjust this number if needed */
}
