.sub-mobile-menu-head {
  display: none;
}

@media (max-width: 768px) {
  body header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 68px;
    padding: 0 14px;
    background: #fff;
    border-bottom: 1px solid #e4ebe7;
  }

  body .logo-wrap {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 7px;
  }

  body .logo-wrap img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex: 0 0 auto;
  }

  body .logo-text {
    font-size: 13px;
    line-height: 1.25;
    white-space: nowrap;
  }

  body .nav-cta {
    display: flex !important;
    align-items: center;
    margin-left: auto;
    margin-right: 8px;
  }

  body .nav-cta .nav-btn-fill {
    display: none !important;
  }

  body .nav-cta .nav-btn-outline {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid #07845f;
    border-radius: 12px;
    background: #fff;
    color: #087f5b;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
  }

  body .hamburger {
    position: relative;
    z-index: 1201;
    display: flex !important;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid #dce9e1;
    border-radius: 12px;
    background: #fff;
  }

  body .hamburger span {
    display: block;
    width: 23px;
    height: 2px;
    margin: 0;
    background: #17211d;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
  }

  body .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  body .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body .nav-menu {
    position: fixed !important;
    top: 68px !important;
    right: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    z-index: 1100 !important;
    display: none !important;
    width: 100% !important;
    height: auto !important;
    max-height: calc(100dvh - 68px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 16px max(16px, calc((100% - 560px) / 2)) 24px !important;
    overflow-y: auto;
    background: #fff !important;
    border-top: 0 !important;
    border-bottom: 1px solid #dce9e1;
    box-shadow: 0 18px 36px rgba(17, 24, 39, .14);
    transform: none !important;
  }

  body .nav-menu.open {
    display: grid !important;
  }

  body .sub-mobile-menu-head {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    margin-bottom: 2px;
  }

  body .sub-mobile-menu-head b {
    color: #17211d;
    font-size: 18px;
    font-weight: 800;
  }

  body .sub-mobile-menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: #f1f7f3;
    color: #17211d;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
  }

  body .nav-menu > a {
    display: flex !important;
    align-items: center;
    min-width: 0;
    min-height: 52px;
    margin: 0 !important;
    padding: 0 16px !important;
    border: 1px solid #dce9e1 !important;
    border-radius: 14px !important;
    background: #fff !important;
    color: #26332d !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
  }

  body .nav-menu > a.active,
  body .nav-menu > a[aria-current="page"] {
    border-color: #07845f !important;
    background: #f4fbf7 !important;
    color: #087f5b !important;
  }

  body .nav-menu-cta,
  body .nav-menu .nav-dropdown {
    display: none !important;
  }

  body .menu-overlay {
    display: none !important;
  }

  body .menu-overlay.open {
    position: fixed !important;
    inset: 68px 0 0 !important;
    z-index: 900 !important;
    display: block !important;
    background: rgba(17, 24, 39, .32) !important;
  }

  body .nav-menu > a:focus-visible,
  body .sub-mobile-menu-close:focus-visible,
  body .hamburger:focus-visible,
  body .nav-cta a:focus-visible {
    outline: 3px solid rgba(8, 132, 95, .28);
    outline-offset: 2px;
  }
}

@media (max-width: 380px) {
  body .logo-text {
    font-size: 12px;
  }

  body .nav-cta .nav-btn-outline {
    padding: 0 10px;
    font-size: 13px;
  }
}
