/**
 * Contact Convoy — shared site header (same as homepage).
 */
:root {
  --cc-midnight: #0b1120;
  --cc-purple: #7b61ff;
  --cc-ink: #1e293b;
  --cc-cloud: #f8fafc;
  --cc-slate-700: #334155;
  --cc-grad: linear-gradient(120deg, #2e3192 0%, #7b61ff 55%, #1bffff 100%);
  --cc-maxw: 1180px;
}

.cc-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid rgba(46, 49, 146, 0.08);
}

.cc-site-wrap {
  max-width: var(--cc-maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.cc-site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.cc-site-header .nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.cc-site-header .nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--cc-slate-700);
  text-decoration: none;
  transition: color 0.2s;
}

.cc-site-header .nav-links a:hover {
  color: var(--cc-purple);
}

.cc-site-header .nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.cc-site-header .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cc-site-header .btn-primary {
  background: var(--cc-grad);
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(123, 97, 255, 0.55);
}

.cc-site-header .btn-primary:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.cc-site-header .btn-ghost-dark {
  background: rgba(46, 49, 146, 0.06);
  color: var(--cc-ink);
  border: 1px solid rgba(46, 49, 146, 0.15);
}

.cc-site-header .btn-ghost-dark:hover {
  background: rgba(46, 49, 146, 0.1);
  text-decoration: none;
}

.cc-subnav {
  background: #fff;
  border-bottom: 1px solid rgba(46, 49, 146, 0.08);
}

.cc-subnav .cc-site-wrap {
  padding-top: 10px;
  padding-bottom: 10px;
}

.cc-subnav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--cc-slate-700);
  text-decoration: none;
}

.cc-subnav a:hover {
  color: var(--cc-purple);
}

@media (max-width: 900px) {
  .cc-site-header .nav-links {
    display: none;
  }

  .cc-site-header .nav-cta .btn-ghost-dark {
    display: none;
  }
}
