/* SmartLoop shared navigation + footer */

/* ── NAV ── */
.sl-nav {
  background: #1a1630;
  border-bottom: 0.5px solid #3C3489;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.sl-nav-inner {
  max-width: 960px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sl-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.sl-wordmark { font-size: 16px; font-weight: 600; color: #EEEDFE; letter-spacing: -0.2px; }
.sl-wordmark span { font-weight: 300; color: #AFA9EC; }

.sl-nav-links { display: flex; gap: 28px; }

.sl-nav-link {
  font-size: 14px;
  color: #AFA9EC;
  text-decoration: none;
  transition: color 0.15s;
}
.sl-nav-link:hover { color: #EEEDFE; }
.sl-nav-link.active { color: #EEEDFE; font-weight: 500; }

.sl-nav-cta {
  background: #534AB7;
  color: #EEEDFE;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.sl-nav-cta:hover { background: #7F77DD; }

.sl-nav-back {
  font-size: 13px;
  color: #AFA9EC;
  text-decoration: none;
  transition: color 0.15s;
}
.sl-nav-back:hover { color: #EEEDFE; }

/* ── FOOTER ── */
.sl-footer {
  background: #1a1630;
  border-top: 0.5px solid #26215C;
  padding: 20px 32px;
  display: flex;
  justify-content: center;
}

.sl-footer-inner {
  max-width: 960px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.sl-footer-logo {
  font-size: 14px;
  font-weight: 500;
  color: #AFA9EC;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sl-footer-links { display: flex; gap: 20px; }

.sl-footer-link {
  font-size: 13px;
  color: #5F5E5A;
  text-decoration: none;
}
.sl-footer-link:hover { color: #AFA9EC; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .sl-nav { padding: 0 16px; }
  .sl-nav-links { display: none; }
  .sl-footer { padding: 16px; }
}
