/* ---- NAV LINKS (replaces nav-tagline for MVP) ---- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
  font-weight: 500;
}
.nav-link:hover {
  color: var(--fg);
  background: rgba(255,255,255,0.05);
}
.nav-cta {
  font-size: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 7px;
  margin-left: 6px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.2px;
}
.nav-cta:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}

/* ---- SERVICE CARDS AS LINKS ---- */
.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.service-link:hover {
  border-color: rgba(59, 130, 246, 0.35) !important;
  transform: translateY(-2px);
}
.service-link {
  transition: border-color 0.2s, transform 0.2s;
}
.service-learn {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--accent-bright);
  letter-spacing: -0.1px;
  opacity: 0;
  transition: opacity 0.2s;
}
.service-link:hover .service-learn {
  opacity: 1;
}

/* ---- CLOSING CTAs ---- */
.closing-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
.closing-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.2px;
}
.closing-btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
}
.closing-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
  letter-spacing: -0.2px;
}
.closing-btn-secondary:hover {
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

/* ---- HERO CTA BUTTONS ---- */
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 26px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.2px;
}
.hero-btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}
.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 22px;
  color: var(--fg-muted);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: -0.2px;
}
.hero-btn-ghost:hover { color: var(--fg); }

/* ---- 404 PAGE ---- */
.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 48px 32px;
}
.not-found h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg-muted);
}
.not-found p {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.not-found a {
  color: var(--accent-bright);
  text-decoration: none;
  font-weight: 600;
}

/* ---- MOBILE: nav links collapse ---- */
@media (max-width: 640px) {
  .nav-link { display: none; }
  .nav-cta { margin-left: 0; }
}
