body.croco-new-shell {
  --croco-shell-container: 1240px;
  --croco-shell-header-height: 76px;
  --croco-shell-panel-height: 0px;
  --croco-shell-radius-sm: 6px;
  --croco-shell-radius-md: 8px;
  --croco-shell-radius-pill: 999px;
  --croco-shell-accent: #a5c243;
  --croco-shell-accent-ink: #10130d;
  --croco-shell-dark: #05070b;
  --croco-shell-light: #ffffff;
  --croco-shell-muted: rgba(255, 255, 255, .68);
  --croco-shell-line: rgba(255, 255, 255, .14);
  --croco-shell-font: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  overflow-x: hidden;
}

body.croco-new-shell.menu-open {
  overflow: hidden;
}

.croco-new-shell .skip-link {
  position: fixed;
  top: calc(var(--croco-shell-panel-height) + 12px);
  left: 12px;
  z-index: 1200;
  padding: 10px 14px;
  border-radius: var(--croco-shell-radius-sm);
  color: #000;
  background: #fff;
  transform: translateY(-160%);
}

.croco-new-shell .skip-link:focus {
  transform: translateY(0);
}

.croco-new-shell .site-header,
.croco-new-shell .site-header * {
  box-sizing: border-box;
}

.croco-new-shell .site-header {
  position: fixed;
  top: var(--croco-shell-panel-height);
  right: 0;
  left: 0;
  z-index: 1000;
  min-height: var(--croco-shell-header-height);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .84);
  background: rgba(5, 7, 11, .94);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .12);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  font-family: var(--croco-shell-font);
}

.croco-new-shell .site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, .14);
  background: rgba(5, 7, 11, .985);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .2);
}

.croco-new-shell .nav-shell {
  width: 100%;
  max-width: var(--croco-shell-container);
  min-height: var(--croco-shell-header-height);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.croco-new-shell .site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.croco-new-shell .site-brand:hover,
.croco-new-shell .site-brand:focus {
  color: #fff;
  text-decoration: none;
}

.croco-new-shell .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: transparent;
  background:
    linear-gradient(90deg, #a5c243 0 42%, transparent 42%),
    linear-gradient(180deg, #f0f4ea 0 42%, transparent 42%);
  font-weight: 900;
}

.croco-new-shell .desktop-nav {
  min-width: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.croco-new-shell .nav-item {
  position: relative;
}

.croco-new-shell .nav-item::after {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 12px;
  content: "";
}

.croco-new-shell .nav-link {
  min-height: 44px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.croco-new-shell .nav-link:hover,
.croco-new-shell .nav-link:focus {
  color: #fff;
  text-decoration: none;
}

.croco-new-shell .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: min(360px, 90vw);
  padding: 18px;
  border: 1px solid var(--croco-shell-line);
  border-radius: var(--croco-shell-radius-md);
  color: #fff;
  background: rgba(8, 12, 16, .98);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.croco-new-shell .dropdown::before {
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  height: 12px;
  content: "";
}

.croco-new-shell .nav-item:hover .dropdown,
.croco-new-shell .nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.croco-new-shell .dropdown-title {
  margin: 0 0 12px;
  color: var(--croco-shell-accent);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.croco-new-shell .dropdown-grid {
  display: grid;
  gap: 4px;
}

.croco-new-shell .dropdown-grid a {
  min-height: 36px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  border-radius: var(--croco-shell-radius-sm);
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  line-height: 1.25;
  text-decoration: none;
}

.croco-new-shell .dropdown-grid a:hover,
.croco-new-shell .dropdown-grid a:focus {
  color: #fff;
  background: rgba(165, 194, 67, .12);
  text-decoration: none;
}

.croco-new-shell .header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.croco-new-shell .shell-button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--croco-shell-radius-pill);
  color: var(--croco-shell-accent-ink);
  background: var(--croco-shell-accent);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease;
}

.croco-new-shell .shell-button.small {
  min-height: 42px;
  padding: 0 16px;
}

.croco-new-shell .shell-button.secondary {
  border-color: rgba(255, 255, 255, .34);
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.croco-new-shell .shell-button:hover,
.croco-new-shell .shell-button:focus {
  color: var(--croco-shell-accent-ink);
  filter: brightness(1.05);
  text-decoration: none;
  transform: translateY(-1px);
}

.croco-new-shell .shell-button.secondary:hover,
.croco-new-shell .shell-button.secondary:focus {
  color: #fff;
}

.croco-new-shell .menu-button {
  width: 48px;
  height: 48px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--croco-shell-radius-md);
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.croco-new-shell .menu-bars,
.croco-new-shell .menu-bars::before,
.croco-new-shell .menu-bars::after {
  width: 24px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.croco-new-shell .menu-bars {
  position: relative;
}

.croco-new-shell .menu-bars::before,
.croco-new-shell .menu-bars::after {
  position: absolute;
  left: 0;
}

.croco-new-shell .menu-bars::before {
  top: -8px;
}

.croco-new-shell .menu-bars::after {
  top: 8px;
}

.croco-new-shell.menu-open .menu-bars {
  background: transparent;
}

.croco-new-shell.menu-open .menu-bars::before {
  transform: translateY(8px) rotate(45deg);
}

.croco-new-shell.menu-open .menu-bars::after {
  transform: translateY(-8px) rotate(-45deg);
}

.croco-new-shell .mobile-drawer {
  position: fixed;
  top: calc(var(--croco-shell-panel-height) + var(--croco-shell-header-height));
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
  width: 100%;
  height: calc(100svh - var(--croco-shell-panel-height) - var(--croco-shell-header-height));
  max-height: calc(100svh - var(--croco-shell-panel-height) - var(--croco-shell-header-height));
  padding: 22px 24px max(112px, calc(24px + env(safe-area-inset-bottom)));
  display: grid;
  align-content: start;
  gap: 4px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  background: #05070b;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  -webkit-overflow-scrolling: touch;
}

.croco-new-shell .mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.croco-new-shell .mobile-drawer details {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.croco-new-shell .mobile-drawer summary {
  min-height: 48px;
  margin: 0;
  display: flex;
  align-items: center;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

.croco-new-shell .mobile-drawer summary::-webkit-details-marker {
  display: none;
}

.croco-new-shell .mobile-drawer a:not(.shell-button) {
  min-height: 42px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
  line-height: 1.25;
  text-decoration: none;
}

.croco-new-shell .mobile-actions {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.croco-new-shell > .main {
  padding-top: var(--croco-shell-header-height);
}

.croco-new-shell .site-footer,
.croco-new-shell .site-footer * {
  box-sizing: border-box;
}

.croco-new-shell .site-footer {
  padding: 72px 0 34px;
  color: #fff;
  background: var(--croco-shell-dark);
  font-family: var(--croco-shell-font);
}

.croco-new-shell .site-footer__container {
  width: 100%;
  max-width: var(--croco-shell-container);
  margin: 0 auto;
  padding: 0 24px;
}

.croco-new-shell .footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.croco-new-shell .footer-column {
  min-width: 0;
}

.croco-new-shell .footer-column h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.croco-new-shell .footer-description {
  margin: 18px 0 0;
  color: var(--croco-shell-muted);
  font-size: 14px;
  line-height: 1.65;
}

.croco-new-shell .footer-column > a:not(.site-brand),
.croco-new-shell .footer-group a {
  padding: 5px 0;
  display: block;
  color: var(--croco-shell-muted);
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
}

.croco-new-shell .footer-column > a:hover,
.croco-new-shell .footer-column > a:focus,
.croco-new-shell .footer-group a:hover,
.croco-new-shell .footer-group a:focus {
  color: #fff;
  text-decoration: none;
}

.croco-new-shell .footer-mobile {
  display: none;
}

.croco-new-shell .site-footer .footer-group {
  margin: 0;
  border: 1px solid var(--croco-shell-line);
  border-radius: var(--croco-shell-radius-md);
  color: #fff;
  background: #0d1117;
}

.croco-new-shell .site-footer .footer-group summary {
  min-height: 48px;
  margin: 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}

.croco-new-shell .site-footer .footer-group summary::after {
  color: var(--croco-shell-accent);
  content: "+";
  font-size: 20px;
  font-weight: 400;
}

.croco-new-shell .site-footer .footer-group[open] summary {
  border-bottom: 1px solid var(--croco-shell-line);
}

.croco-new-shell .site-footer .footer-group[open] summary::after {
  content: "−";
}

.croco-new-shell .site-footer .footer-group summary::-webkit-details-marker {
  display: none;
}

.croco-new-shell .site-footer .footer-group a {
  padding: 8px 16px;
}

.croco-new-shell .site-footer .footer-bottom {
  margin-top: 54px;
  padding: 22px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--croco-shell-line);
  color: var(--croco-shell-muted);
  font-size: 13px;
  line-height: 1.5;
}

.croco-new-shell .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.croco-new-shell .footer-legal a {
  color: var(--croco-shell-muted);
  text-decoration: none;
}

.croco-new-shell .footer-legal a:hover,
.croco-new-shell .footer-legal a:focus {
  color: #fff;
  text-decoration: none;
}

.croco-new-shell .mobile-bottom-nav {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 1050;
  padding: 8px;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  border: 1px solid rgba(165, 194, 67, .24);
  border-radius: 22px;
  background: rgba(5, 7, 11, .94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .34);
  backdrop-filter: blur(18px);
  font-family: var(--croco-shell-font);
}

.croco-new-shell .mobile-bottom-nav a {
  min-height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.croco-new-shell .mobile-bottom-nav a.is-call {
  color: var(--croco-shell-accent-ink);
  background: var(--croco-shell-accent);
}

.croco-new-shell.modal-open .mobile-bottom-nav {
  display: none !important;
}

@media (max-width: 1100px) {
  .croco-new-shell .desktop-nav,
  .croco-new-shell .header-actions .desktop-only {
    display: none;
  }

  .croco-new-shell .menu-button {
    display: inline-flex;
  }

  .croco-new-shell .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 560px) and (max-width: 1100px) {
  .croco-new-shell .mobile-drawer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 0;
  }

  .croco-new-shell .mobile-actions {
    grid-column: 1 / -1;
  }
}

@media (min-width: 760px) and (max-width: 1100px) {
  .croco-new-shell .mobile-drawer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 22px;
    padding-top: 18px;
  }

  .croco-new-shell .mobile-drawer details {
    padding: 4px 0;
  }

  .croco-new-shell .mobile-drawer summary {
    min-height: 38px;
  }

  .croco-new-shell .mobile-drawer a:not(.shell-button) {
    min-height: 34px;
  }
}

@media (max-width: 820px) {
  .croco-new-shell .nav-shell,
  .croco-new-shell .site-footer__container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .croco-new-shell .footer-grid {
    grid-template-columns: 1fr;
  }

  .croco-new-shell .footer-column:not(.footer-brand) {
    display: none;
  }

  .croco-new-shell .footer-mobile {
    margin-top: 30px;
    display: grid;
    gap: 8px;
  }

  .croco-new-shell .mobile-bottom-nav.is-visible {
    display: grid;
  }
}

@media (max-width: 480px) {
  body.croco-new-shell {
    --croco-shell-header-height: 68px;
  }

  .croco-new-shell .nav-shell,
  .croco-new-shell .site-footer__container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .croco-new-shell .mobile-drawer {
    padding: 18px 16px max(104px, calc(20px + env(safe-area-inset-bottom)));
  }

  .croco-new-shell .mobile-actions {
    grid-template-columns: 1fr;
  }

  .croco-new-shell .site-footer {
    padding-top: 56px;
  }

  .croco-new-shell .site-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .croco-new-shell .site-header,
  .croco-new-shell .dropdown,
  .croco-new-shell .mobile-drawer,
  .croco-new-shell .shell-button {
    transition: none;
  }
}
