/* CoverScore Uniform Brand System */
/* Applied across all funnels: personal, business, landing */

/* ── UNIFORM LOGO ── */
.cs-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.cs-logo-shield {
  width: 36px;
  height: 42px;
  flex-shrink: 0;
}

.cs-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.cs-logo-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.cs-logo-name span {
  color: var(--accent-color, #3b82f6);
}

.cs-logo-tagline {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.6;
}

/* ── MOBILE MENU ── */
.cs-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cs-mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cs-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}

.cs-mobile-menu.active {
  right: 0;
}

.cs-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.cs-mobile-menu-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #f3f4f6;
  border-radius: 8px;
  cursor: pointer;
  color: #374151;
}

.cs-mobile-menu-nav {
  flex: 1;
  padding: 12px 0;
  overflow-y: auto;
}

.cs-mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: #1f2937;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.15s;
}

.cs-mobile-menu-nav a:hover {
  background: #f3f4f6;
}

.cs-mobile-menu-nav a svg {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

.cs-mobile-menu-footer {
  padding: 16px 20px;
  border-top: 1px solid #e5e7eb;
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
}

/* ── HAMBURGER BUTTON ── */
.cs-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
}

.cs-hamburger:hover {
  background: rgba(0, 0, 0, 0.05);
}

.cs-hamburger svg {
  width: 24px;
  height: 24px;
}

/* ── RESPONSIVE ── */
@media (min-width: 769px) {
  .cs-hamburger {
    display: none;
  }
  .cs-mobile-overlay,
  .cs-mobile-menu {
    display: none !important;
  }
}
