.v7-shell-page {
  overflow-x: clip;
}

.v7-compatibility-notice {
  margin: 0;
  padding: 0.65rem 1rem;
  text-align: center;
  background: #eef4ff;
  border-bottom: 1px solid rgba(36, 87, 255, 0.16);
  font: 600 0.875rem/1.4 Inter, ui-sans-serif, system-ui, sans-serif;
}

.v7-compatibility-notice a {
  color: #2457ff;
  text-decoration: underline;
}

.v7-shell,
.v7-shell * {
  box-sizing: border-box;
}

.v7-shell {
  --v7-bg: rgba(9, 10, 20, 0.92);
  --v7-panel: #15172a;
  --v7-border: rgba(255, 255, 255, 0.13);
  --v7-text: #f8f8fc;
  --v7-muted: #a8a9ba;
  --v7-accent: #8f82ff;
  --v7-accent-strong: #7363f4;
  color: var(--v7-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

.v7-shell a {
  color: inherit;
  text-decoration: none;
}

.v7-shell button,
.v7-shell a {
  -webkit-tap-highlight-color: transparent;
}

.v7-shell button {
  color: inherit;
  font: inherit;
}

.v7-shell [hidden] {
  display: none !important;
}

.v7-shell :focus-visible {
  outline: 3px solid #8f82ff;
  outline-offset: 3px;
}

.v7-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  min-height: 72px;
  padding-inline: clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--v7-border);
  background: var(--v7-bg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.v7-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  min-height: 40px;
  color: var(--v7-text);
  font-weight: 750;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.v7-brand img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.v7-primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: clamp(8px, 1.35vw, 22px);
}

.v7-primary-nav > a,
.v7-nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--v7-muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.v7-primary-nav a:hover,
.v7-primary-nav a[aria-current="page"] {
  color: var(--v7-text);
}

.v7-nav-dropdown,
.v7-language {
  position: relative;
}

.v7-nav-dropdown-menu,
.v7-language-menu {
  position: absolute;
  top: calc(100% + 8px);
  z-index: 4;
  display: grid;
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--v7-border);
  border-radius: 14px;
  background: var(--v7-panel);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
}

.v7-nav-dropdown-menu {
  left: 50%;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.v7-nav-dropdown:hover .v7-nav-dropdown-menu,
.v7-nav-dropdown:focus-within .v7-nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.v7-nav-dropdown-menu a,
.v7-language-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 11px;
  border-radius: 9px;
  color: var(--v7-muted);
  white-space: nowrap;
}

.v7-nav-dropdown-menu a:hover,
.v7-language-menu a:hover,
.v7-language-menu a[aria-current="true"] {
  color: var(--v7-text);
  background: rgba(143, 130, 255, 0.14);
}

.v7-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.v7-language-trigger,
.v7-mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 42px;
  min-height: 42px;
  padding: 7px 10px;
  border: 1px solid var(--v7-border);
  border-radius: 11px;
  background: transparent;
  cursor: pointer;
}

.v7-language-menu {
  right: 0;
}

.v7-header-login,
.v7-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.v7-header-login {
  color: var(--v7-muted);
}

.v7-header-cta {
  background: var(--v7-accent-strong);
  box-shadow: 0 8px 22px rgba(115, 99, 244, 0.28);
}

.v7-header-cta:hover {
  background: var(--v7-accent);
}

.v7-mobile-menu-toggle,
.v7-mobile-navigation {
  display: none;
}

.v7-menu-icon,
.v7-menu-icon::before,
.v7-menu-icon::after {
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.v7-menu-icon {
  position: relative;
}

.v7-menu-icon::before,
.v7-menu-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.v7-menu-icon::before { top: -5px; }
.v7-menu-icon::after { top: 5px; }

.v7-site-footer {
  padding: clamp(44px, 7vw, 84px) clamp(20px, 6vw, 80px) 24px;
  border-top: 1px solid var(--v7-border);
  background: #090a14;
}

.v7-footer-main {
  display: grid;
  grid-template-columns: minmax(210px, 1.4fr) repeat(2, minmax(150px, 0.7fr)) minmax(190px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 1280px;
  margin-inline: auto;
}

.v7-footer-main nav,
.v7-footer-support,
.v7-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.v7-footer-main strong {
  margin-bottom: 5px;
  color: var(--v7-text);
}

.v7-footer-main nav a,
.v7-footer-support a {
  min-height: 30px;
  color: var(--v7-muted);
}

.v7-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.v7-socials a {
  min-height: 40px;
  padding-block: 9px;
  color: var(--v7-muted);
}

.v7-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1280px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--v7-border);
  color: var(--v7-muted);
}

.v7-footer-bottom span {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.white-growth-page .v7-shell,
.fashion-v5-page .v7-shell {
  --v7-bg: rgba(255, 255, 255, 0.94);
  --v7-panel: #ffffff;
  --v7-border: rgba(25, 29, 46, 0.12);
  --v7-text: #151729;
  --v7-muted: #5f6378;
}

.white-growth-page .v7-site-header,
.fashion-v5-page .v7-site-header {
  box-shadow: 0 12px 36px rgba(31, 35, 55, 0.08);
}

@media (max-width: 1180px) {
  .v7-site-header {
    grid-template-columns: auto 1fr;
    background: var(--v7-panel);
    backdrop-filter: none;
  }

  .v7-primary-nav {
    display: none;
  }

  .v7-mobile-menu-toggle {
    display: inline-flex;
  }

  .v7-mobile-navigation:not([hidden]) {
    position: fixed;
    inset: 72px 0 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    overflow-y: auto;
    padding: 20px clamp(16px, 5vw, 56px) 40px;
    background: var(--v7-panel);
  }

  .v7-mobile-navigation > a,
  .v7-mobile-navigation > .v7-nav-dropdown > a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 8px 4px;
    border-bottom: 1px solid var(--v7-border);
  }

  .v7-mobile-navigation .v7-nav-dropdown-menu {
    position: static;
    visibility: visible;
    display: grid;
    min-width: 0;
    padding: 4px 0 10px 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .v7-mobile-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
  }

  .v7-mobile-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 9px 15px;
    border: 1px solid var(--v7-border);
    border-radius: 11px;
  }
}

@media (max-width: 980px) {
  .v7-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .v7-site-header {
    min-height: 64px;
    padding-inline: 12px;
    gap: 8px;
  }

  .v7-brand span,
  .v7-header-login {
    display: none;
  }

  .v7-header-actions {
    gap: 7px;
  }

  .v7-header-cta {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .v7-language-trigger,
  .v7-mobile-menu-toggle {
    min-width: 38px;
    min-height: 38px;
    padding-inline: 8px;
  }

  .v7-mobile-menu-toggle [data-v7-menu-label] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .v7-mobile-navigation:not([hidden]) {
    inset: 64px 0 0;
  }

  .v7-site-footer,
  .v7-footer-main {
    grid-template-columns: 1fr;
  }

  .v7-footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v7-shell *,
  .v7-shell *::before,
  .v7-shell *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

html.v7-shell-menu-open,
html.v7-shell-menu-open body {
  overflow: hidden;
}
