*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #132238;
  --navy-dark: #0B1524;
  --teal: #17C3B2;
  --teal-hover: #119A8D;
  --bg-light: #F7F9FC;
  --white: #FFFFFF;
  --text-main: #344054;
  --text-muted: #667085;
  --text-soft: #9DB3C8;
  --border: #D9E2EC;
  --navy-text-on-bg: #D9E2EC;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--white);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* NAV */
.nav {
  background: var(--navy);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--teal);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.nav-logo-text { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 500; color: #fff; }
.nav-logo-text span { color: var(--teal); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--navy-text-on-bg); font-size: 13px; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-btn {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s;
}
.nav-btn:hover { background: var(--teal-hover); color: #fff; }

/* Hide nav CTA when on the contact page */
.nav-btn-contact-hide { display: none; }

/* MOBILE HAMBURGER */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-hamburger svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  padding: 24px 20px;
  gap: 4px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--navy-text-on-bg);
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu a:hover, .mobile-menu a.active {
  color: var(--teal);
  background: rgba(23,195,178,0.08);
}
.mobile-menu .mobile-menu-cta {
  background: var(--teal);
  color: #fff;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-top: 12px;
  transition: background 0.15s;
}
.mobile-menu .mobile-menu-cta:hover { background: var(--teal-hover); }

/* FOOTER */
.footer {
  background: var(--navy-dark);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { font-family: 'Poppins', sans-serif; font-size: 14px; color: #fff; font-weight: 500; }
.footer-logo span { color: var(--teal); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); font-size: 12px; transition: color 0.15s; }
.footer-links a:hover { color: var(--teal); }
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* EYEBROW / SECTION LABELS */
.eyebrow {
  display: inline-block;
  background: rgba(23,195,178,0.12);
  border: 1px solid rgba(23,195,178,0.25);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 12px;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 20px;
}
.sec-eyebrow {
  font-size: 12px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}
.sec-title {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 10px;
}
.sec-sub {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 48px;
}

/* BUTTONS */
.btn-primary {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--teal-hover); color: #fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 13px 26px;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.15s;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 26px;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: inline-block;
  transition: border-color 0.15s;
}
.btn-outline:hover { border-color: var(--navy); }

/* SHARED CTA SECTION */
.cta-section {
  background: var(--navy);
  padding: 80px 48px;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}
.cta-section h2 em { color: var(--teal); font-style: normal; }
.cta-section p { color: var(--text-soft); font-size: 15px; max-width: 440px; margin: 0 auto 32px; line-height: 1.7; }
.cta-btns-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.cta-note { font-size: 12px; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-btn { display: none; }
  .nav-hamburger { display: flex; }
  .footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 60px 20px; }
  .cta-section h2 { font-size: 26px; }
}
