/* =========================================
   GLOBAL HEADER + FOOTER
========================================= */

:root {
  --text: #0a2540;
  --text-soft: #425466;
  --accent: #635bff;
}

/* HEADER */

.vc-header {
  position: fixed;
  top: 12px;
  left: 16px;
  right: 16px;
  z-index: 100;
}

.vc-header__inner {
  width: min(1080px, 100%);
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 10px 14px;
  border-radius: 14px;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(10,37,64,0.06);
  box-shadow: 0 10px 30px rgba(10,37,64,0.06);
}

.vc-header__left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.vc-logo img {
  height: 15px;
}

.vc-nav {
  display: flex;
  gap: 6px;
}

.vc-nav a {
  font-size: 12px;
  font-weight: 600;
  color: #55697d;
  padding: 7px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.vc-nav a:hover {
  background: rgba(99,91,255,0.07);
  color: var(--text);
}

.vc-btn {
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;

  background: rgba(16, 185, 129, 0.12); /* soft green */
  color: #047857; /* deep green text */

  border: 1px solid rgba(16, 185, 129, 0.18);
  text-decoration: none;

  transition: all 0.15s ease;
}

.vc-btn:hover {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-1px);
}

/* FOOTER */

.vc-footer {
  width: min(1080px, calc(100% - 40px));
  margin: 80px auto 30px;
  border-radius: 14px;

  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(10,37,64,0.06);
  box-shadow: 0 10px 30px rgba(10,37,64,0.05);
}

.vc-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 18px;
}

.vc-footer__left img {
  height: 15px;
}

.vc-footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.vc-footer__links a {
  font-size: 12px;
  color: var(--text-soft);
  text-decoration: none;
}

.vc-footer__links a:hover {
  color: var(--accent);
}

.vc-footer__sep {
  color: #9fb0c0;
}

/* MOBILE */

@media (max-width: 720px) {
  .vc-nav {
    display: none;
  }

  .vc-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.vc-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  color: #55697d;
  padding: 7px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.vc-nav a:hover {
  background: rgba(99, 91, 255, 0.07);
  color: var(--text);
}

.vc-nav a.is-active,
.vc-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(99, 91, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(99, 91, 255, 0.06);
}

.vc-footer__links a.is-active,
.vc-footer__links a[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}