/* ===================================================
   RESET_LAB — UNIFIED HEADER + SCROLL BAR + FOOTER
=================================================== */

/* ── Header ── */
#rl-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;
  z-index: 1000;
  background: rgba(8,12,16,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
#rl-header.scrolled {
  background: rgba(8,12,16,0.98);
}
.rl-header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rl-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.rl-logo-img {
  height: 24px;
  width: auto;
  display: block;
}
.rl-btn-diag {
  background: #E43A4F;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.rl-btn-diag:hover { background: #c4283a; }

/* ── Scroll progress bar ── */
#rl-scroll-bar {
  position: fixed;
  top: 56px; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.06);
  z-index: 1000;
  pointer-events: none;
}
#rl-scroll-fill {
  height: 100%;
  width: 0%;
  background: #E43A4F;
}

/* ── Footer ── */
#rl-footer {
  background: #050d14;
  padding: 48px 28px;
  text-align: center;
}
.rl-footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-bottom: 24px;
}
.rl-footer-logo-img {
  height: 26px;
  width: auto;
  display: block;
  opacity: 0.75;
}
.rl-footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.rl-footer-link {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s, border-color 0.2s;
}
.rl-footer-link:hover {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}
.rl-footer-link.rl-footer-cta {
  background: #E43A4F;
  border-color: #E43A4F;
  color: #fff;
}
.rl-footer-cta:hover {
  background: #c4283a;
  border-color: #c4283a;
  color: #fff !important;
}
.rl-footer-copy {
  margin-top: 24px;
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  font-family: 'Montserrat', sans-serif;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  #rl-header { height: 48px; }
  .rl-header-inner { padding: 0 16px; }
  .rl-logo-img { height: 18px; }
  .rl-btn-diag { font-size: 11px; padding: 7px 13px; }
  #rl-scroll-bar { top: 48px; }
  .rl-footer-nav { gap: 8px; }
  .rl-footer-link { font-size: 12px; padding: 7px 14px; }
}
