.sr-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 10, 8, 0.78);
  backdrop-filter: blur(18px);
}

.sr-nav__inner {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 4.25rem;
}

.sr-nav__brand,
.sr-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  color: #f5f7f5;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.sr-nav__brand img,
.sr-footer__brand img {
  width: 1.55rem;
  height: 1.55rem;
}

.sr-nav__menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.sr-nav__item {
  position: relative;
}

.sr-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.4rem;
  padding: 0 0.72rem;
  border-radius: 0.55rem;
  color: #aeb6b0;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 560;
  transition: color 160ms ease, background 160ms ease;
}

.sr-nav__link--button {
  border: 0;
  background: transparent;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
}

.sr-nav__link:hover,
.sr-nav__item:hover .sr-nav__link,
.sr-nav__link[aria-current="page"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.sr-nav__chev {
  color: #6f7872;
  font-size: 0.78rem;
  transform: translateY(-1px);
}

.sr-mega {
  position: absolute;
  left: 50%;
  top: 100%;
  width: min(760px, calc(100vw - 2rem));
  padding-top: 0.8rem;
  transform: translateX(-50%) translateY(6px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 210ms ease, transform 210ms ease;
  transition-delay: 90ms;
}

.sr-mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 0.95rem;
}

.sr-nav__item:hover .sr-mega,
.sr-nav__item:focus-within .sr-mega {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0ms;
}

.sr-mega__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 0.9rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 14% 0%, rgba(62, 207, 142, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(13, 19, 16, 0.98), rgba(5, 8, 7, 0.98));
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sr-mega__feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid rgba(62, 207, 142, 0.14);
  border-radius: 0.85rem;
  background: rgba(62, 207, 142, 0.045);
}

.sr-mega__feature span {
  color: #3ecf8e;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sr-mega__feature strong {
  display: block;
  margin-top: 0.55rem;
  color: #f6f8f6;
  font-size: 1.03rem;
  line-height: 1.18;
}

.sr-mega__feature p {
  margin: 0.55rem 0 0;
  color: #9fa8a2;
  font-size: 0.82rem;
  line-height: 1.55;
}

.sr-mega__feature em {
  margin-top: 1rem;
  color: #3ecf8e;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 680;
}

.sr-mega__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
}

.sr-mega__card {
  display: block;
  min-height: 4.7rem;
  padding: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.018);
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.sr-mega__card:hover {
  transform: translateY(-1px);
  border-color: rgba(62, 207, 142, 0.22);
  background: rgba(62, 207, 142, 0.055);
}

.sr-mega__card strong {
  display: block;
  color: #eef3ef;
  font-size: 0.83rem;
  line-height: 1.2;
}

.sr-mega__card span {
  display: block;
  margin-top: 0.28rem;
  color: #838d86;
  font-size: 0.74rem;
  line-height: 1.35;
}

.sr-mega--compact {
  width: min(460px, calc(100vw - 2rem));
}

.sr-mega--compact .sr-mega__panel {
  display: block;
  padding: 0.75rem;
}

.sr-mega--compact .sr-mega__grid {
  grid-template-columns: 1fr;
  gap: 0.42rem;
}

.sr-mega--compact .sr-mega__card {
  min-height: 4.35rem;
  padding: 0.78rem;
  border-color: rgba(255, 255, 255, 0.055);
  background: rgba(255, 255, 255, 0.018);
  border-radius: 0.75rem;
}

.sr-mega--compact .sr-mega__card strong {
  font-size: 0.83rem;
}

.sr-mega--compact .sr-mega__card span {
  display: block;
}

.sr-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sr-nav__login {
  color: #d7ddd9;
  text-decoration: none;
  font-size: 0.88rem;
}

.sr-nav__cta,
.sr-page__cta-primary,
.sr-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(62, 207, 142, 0.45);
  border-radius: 0.55rem;
  background: linear-gradient(180deg, #4dde9a, #2fbf7f);
  color: #03110b;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 760;
  min-height: 2.45rem;
  padding: 0 1rem;
  box-shadow: 0 16px 38px rgba(47, 191, 127, 0.18);
}

.sr-nav__toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.035);
  color: #f5f7f5;
}

.sr-mobile {
  display: none;
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto 1rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(8, 13, 11, 0.98);
}

.sr-mobile.is-open {
  display: grid;
  gap: 0.35rem;
}

.sr-mobile a,
.sr-mobile__trigger {
  display: block;
  width: 100%;
  padding: 0.72rem 0.8rem;
  border: 0;
  border-radius: 0.65rem;
  background: transparent;
  color: #dfe5e1;
  text-decoration: none;
  font-size: 0.92rem;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.sr-mobile a:hover,
.sr-mobile__trigger:hover {
  background: rgba(255, 255, 255, 0.045);
}

.sr-mobile__group {
  display: grid;
  gap: 0.18rem;
}

.sr-mobile__children {
  display: grid;
  gap: 0.12rem;
  margin-left: 0.75rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.sr-mobile__children a {
  color: #9fa9a3;
  font-size: 0.86rem;
  padding: 0.58rem 0.7rem;
}

.sr-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(4, 7, 6, 0.72);
}

.sr-footer__inner {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 4.5rem 0 2rem;
}

.sr-footer__grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) repeat(5, minmax(110px, 1fr));
  gap: 2rem;
}

.sr-footer__intro p {
  max-width: 16.5rem;
  margin: 0.95rem 0 1.2rem;
  color: #9aa39d;
  font-size: 0.82rem;
  line-height: 1.55;
}

.sr-footer__email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #aab3ad;
  text-decoration: none;
  font-size: 0.84rem;
}

.sr-footer__email:hover {
  color: #ffffff;
}

.sr-footer__email svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.sr-footer__socials {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.sr-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  color: #87918a;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.sr-footer__socials a:hover {
  color: #f6f8f6;
  background: rgba(255, 255, 255, 0.045);
}

.sr-footer__socials svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.sr-footer__col h4 {
  margin: 0 0 0.85rem;
  color: #f4f6f4;
  font-size: 0.82rem;
  font-weight: 720;
}

.sr-footer__col a {
  display: block;
  margin: 0.52rem 0;
  color: #9aa39d;
  text-decoration: none;
  font-size: 0.82rem;
}

.sr-footer__col a:hover {
  color: #ffffff;
}

.sr-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #737d76;
  font-size: 0.76rem;
  line-height: 1.5;
}

@media (max-width: 940px) {
  .sr-nav__menu,
  .sr-nav__actions {
    display: none;
  }

  .sr-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .sr-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sr-footer__intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .sr-nav__inner,
  .sr-mobile,
  .sr-footer__inner {
    width: min(100% - 1.5rem, 1200px);
  }

  .sr-footer__grid {
    grid-template-columns: 1fr;
  }

  .sr-footer__bottom {
    flex-direction: column;
  }
}
