/* -------------------------------------------------------------
   LHD Mega Menu Navigation
   Drop into child theme root, enqueue via functions.php
------------------------------------------------------------- */

:root {
  --lemon-green: #8BC53F;
  --lemon-green-dark: #6BA32D;
  --lemon-yellow: #FFC107;
  --dark-bg: #0a0d10;
  --dark-bg-lighter: #12161c;
  --dark-card: #181d24;
  --dark-card-border: #252d38;
  --text-light: #FFFFFF;
  --text-light-muted: #8a95a5;
  --header-height: 88px;
  --header-height-scrolled: 64px;
}

/* -- DESKTOP ONLY ------------------------------------------- */
@media (max-width: 1024px) {
  .lhd-desktop-only { display: none !important; }
}

/* -- HEADER ------------------------------------------------- */
.lhd-header { 
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-height);
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.3s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.lhd-header.scrolled {
  background: rgba(10, 13, 16, 0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
  height: var(--header-height-scrolled);
}
/* Darken header when a mega menu is open (even when at top of page) */
.lhd-header:has(.lhd-nav-item.active) {
  background: rgba(10, 13, 16, 0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lhd-header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; gap: 40px;
  transition: height 0.3s ease;
}

/* -- LOGO --------------------------------------------------- */
.lhd-logo { flex-shrink: 0; text-decoration: none; display: flex; align-items: center; }
.lhd-logo img { height: 48px; width: auto; transition: height 0.3s ease; }
.lhd-header.scrolled .lhd-logo img { height: 34px; }

/* -- DESKTOP NAV -------------------------------------------- */
.lhd-nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.lhd-nav-item { position: static; }

.lhd-nav-link {
  display: flex; align-items: center; gap: 5px; padding: 8px 14px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--text-light-muted); text-decoration: none;
  border-radius: 8px; transition: color 0.2s, background 0.2s;
  white-space: nowrap; cursor: pointer; border: none; background: none;
}
.lhd-nav-link:hover,
.lhd-nav-item.active .lhd-nav-link { color: #fff; background: rgba(255,255,255,0.06); }
/* chevron removed */

/* -- MEGA MENU ---------------------------------------------- */
.lhd-mega {
  position: fixed; top: var(--header-height); left: 0; right: 0;
  background: rgba(10, 13, 16, 0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 999;
  overflow: hidden;
}
.lhd-nav-item.active .lhd-mega { opacity: 1; visibility: visible; }

/* When scrolled, mega top tracks the shorter header height */
.lhd-header.scrolled ~ * .lhd-mega,
.lhd-header.scrolled .lhd-mega {
  top: var(--header-height-scrolled);
}

/* -- MEGA MENU ANIMATED BACKGROUND ----------------------- */
.lhd-mega-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.lhd-mega-inner { position: relative; z-index: 1; }

.mega-orb {
  position: absolute; border-radius: 50%; filter: blur(50px);
  animation: megaOrbFloat 12s ease-in-out infinite;
}
.mega-orb-1 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(139,197,63,0.18) 0%, transparent 70%);
  top: -80px; right: 8%; animation-delay: 0s;
}
.mega-orb-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(139,197,63,0.12) 0%, transparent 70%);
  bottom: -60px; left: 5%; animation-delay: -4s;
}
.mega-orb-3 {
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,193,7,0.1) 0%, transparent 70%);
  top: 30%; left: 42%; animation-delay: -8s;
}
@keyframes megaOrbFloat {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.7; }
  33%  { transform: translate(20px,-15px) scale(1.08); opacity: 1; }
  66%  { transform: translate(-15px,10px) scale(0.93); opacity: 0.5; }
}

.mega-geo {
  position: absolute; border: 1.5px solid rgba(139,197,63,0.2);
  animation: megaGeoSpin 20s ease-in-out infinite;
}
.mega-geo-sq {
  width: 48px; height: 48px;
  top: 20%; left: 3%; transform: rotate(45deg);
}
.mega-geo-circ {
  width: 64px; height: 64px; border-radius: 50%;
  top: 15%; right: 4%; border-style: dashed; animation-delay: -8s;
}
@keyframes megaGeoSpin {
  0%, 100% { transform: rotate(0deg); opacity: 0.2; }
  50%       { transform: rotate(180deg); opacity: 0.35; }
}
.mega-geo-sq { animation: megaGeoSpin 20s ease-in-out infinite; }
.mega-geo-circ { animation: megaGeoSpin 20s ease-in-out infinite reverse; }

.mega-x {
  position: absolute; width: 16px; height: 16px;
  animation: megaXPulse 4s ease-in-out infinite;
}
.mega-x::before, .mega-x::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 100%; height: 1.5px; background: var(--lemon-green);
}
.mega-x::before { transform: translate(-50%,-50%) rotate(45deg); }
.mega-x::after  { transform: translate(-50%,-50%) rotate(-45deg); }
.mega-x-1 { top: 12%; left: 12%; opacity: 0.25; }
.mega-x-2 { bottom: 18%; right: 10%; opacity: 0.25; animation-delay: -2s; }
@keyframes megaXPulse {
  0%, 100% { opacity: 0.12; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(1.3); }
}

.mega-sweep {
  position: absolute; top: 0; left: -100%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139,197,63,0.025), transparent);
  animation: megaSweep 7s ease-in-out infinite;
}
@keyframes megaSweep {
  0%   { left: -50%; }
  100% { left: 150%; }
}

/* Grid pattern overlay */
.mega-grid-pattern {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(139,197,63,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(139,197,63,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.lhd-mega-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 36px 32px 40px; display: grid; gap: 40px;
}
.lhd-mega--services .lhd-mega-inner { grid-template-columns: 200px 1fr; }

.lhd-mega-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--lemon-green); margin-bottom: 14px;
}
.lhd-mega-desc { font-size: 13px; color: var(--text-light-muted); line-height: 1.6; margin-bottom: 20px; }
.lhd-mega-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--lemon-green); text-decoration: none; transition: gap 0.2s;
}
.lhd-mega-cta:hover { gap: 10px; }

.lhd-mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }

.lhd-mega-card {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 14px 16px; border-radius: 12px; text-decoration: none; transition: background 0.18s;
}
.lhd-mega-card:hover { background: rgba(255,255,255,0.045); }

.lhd-mega-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(139, 197, 63, 0.1);
  border: 1px solid rgba(139, 197, 63, 0.18);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--lemon-green);
}
.lhd-mega-icon svg { width: 18px; height: 18px; }

.lhd-mega-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700;
  color: #fff; margin-bottom: 3px; line-height: 1.3;
}
.lhd-mega-card-sub { font-size: 12px; color: var(--text-light-muted); line-height: 1.4; }

.lhd-mega--simple .lhd-mega-inner { grid-template-columns: repeat(4, 1fr); padding: 28px 32px 32px; }
.lhd-mega--simple-3 .lhd-mega-inner { grid-template-columns: repeat(3, 1fr); padding: 28px 32px 32px; }

.lhd-mega-simple-link {
  display: flex; align-items: center; gap: 9px; padding: 9px 10px; border-radius: 9px;
  text-decoration: none; color: var(--text-light-muted);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 600;
  transition: color 0.18s, background 0.18s;
}
.lhd-mega-simple-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
.lhd-mega-simple-link svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.6; }
.lhd-mega-simple-link:hover svg { opacity: 1; }

/* -- OVERLAY ------------------------------------------------ */
.lhd-overlay {
  position: fixed; inset: 0; top: var(--header-height);
  background: rgba(0,0,0,0.4); opacity: 0; visibility: hidden;
  transition: opacity 0.22s, visibility 0.22s; z-index: 998; cursor: pointer;
}
.lhd-overlay.active { opacity: 1; visibility: visible; }

/* -- HEADER ACTIONS ----------------------------------------- */
.lhd-header-actions { display: flex; align-items: center; gap: 16px; margin-left: auto; flex-shrink: 0; }

/* Call/text element - matches existing header style */
.lhd-call-block {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
  transition: opacity 0.2s;
}
.lhd-call-block:hover { opacity: 0.8; }
.lhd-call-icon {
  width: 38px; height: 38px; border-radius: 4px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
  transition: background 0.2s;
}
.lhd-call-icon svg { width: 20px; height: 20px; display: block; flex-shrink: 0; }
.lhd-call-block:hover .lhd-call-icon { background: rgba(255,255,255,0.18); }
.lhd-call-text { display: flex; flex-direction: column; }
.lhd-call-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.7); line-height: 1;
  margin-bottom: 4px;
}
.lhd-call-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px; font-weight: 800; color: #fff; line-height: 1;
  letter-spacing: -0.3px;
}

/* Scrolled - compact */
.lhd-header.scrolled .lhd-call-number { font-size: 15px; }
.lhd-header.scrolled .lhd-call-label { font-size: 9px; }
.lhd-header.scrolled .lhd-call-icon { width: 30px; height: 30px; }

.lhd-phone {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--text-light-muted); text-decoration: none; transition: color 0.2s; white-space: nowrap;
  display: none; /* hidden - replaced by lhd-call-block */
}
.lhd-phone:hover { color: #fff; }
.lhd-btn {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700;
  padding: 10px 20px; border-radius: 60px; border: none; cursor: pointer;
  text-decoration: none; transition: transform 0.18s, box-shadow 0.18s; white-space: nowrap;
  display: inline-block;
}
.lhd-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139, 197, 63, 0.35); }
.lhd-btn--primary { background: linear-gradient(135deg, var(--lemon-green), var(--lemon-green-dark)); color: #fff; }

/* -- HAMBURGER ---------------------------------------------- */
.lhd-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none; margin-left: auto;
}
.lhd-hamburger span {
  display: block; width: 24px; height: 2px; background: #fff;
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s, width 0.3s; transform-origin: center;
}
.lhd-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lhd-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.lhd-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -- MOBILE DRAWER (full-screen overlay, covers header) -----
   Always rendered as flex column. Hidden state uses opacity/visibility for a
   smooth fade-in transition; pointer-events: none keeps it click-through when
   closed. JS toggles `.lhd-mobile-nav--open` to reveal it. */
.lhd-mobile-nav {
  display: flex;
  flex-direction: column;
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
  z-index: 9999 !important; /* above page header (z-index 1000) */
  overflow: hidden;
  background: var(--dark-bg);
  margin: 0; padding: 0;

  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}
.lhd-mobile-nav.lhd-mobile-nav--open,
.lhd-mobile-nav[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.28s ease, visibility 0s linear 0s;
}

/* Drawer's own topbar — height/padding/logo size match the page header on
   mobile (height 72, padding 0 32, logo height 38) so the logo and close
   button land at the exact same coordinates as the page header's logo and
   hamburger. */
.lhd-mobile-topbar {
  flex: 0 0 72px !important;
  height: 72px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 32px !important;
  background: var(--dark-bg);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 2;
  width: 100%;
  box-sizing: border-box;
}
.lhd-mobile-logo {
  display: flex; align-items: center; text-decoration: none; flex-shrink: 0;
}
.lhd-mobile-logo img { height: 38px; width: auto; display: block; }

/* Main panel — absolutely positioned over the drawer, padded to clear the
   72px topbar. The topbar (z-index 2) sits visually on top of this padding. */
.lhd-mobile-main {
  position: absolute;
  inset: 0;
  background: var(--dark-bg);
  overflow-y: auto;
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 75px 0 40px!important;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
}
.lhd-mobile-main.slide-out { transform: translateX(-100%); }

/* Reduced-motion users get an instant reveal (no fade). */
@media (prefers-reduced-motion: reduce) {
  .lhd-mobile-nav { transition: none !important; }
}

/* Close button — sits where the hamburger was. Forced into the flex flow
   (position: static !important) to override any cached `position: absolute`
   from earlier iterations. Width/padding match the 40px hamburger tappable
   area so there's no horizontal jump when the menu opens. */
.lhd-mobile-close {
  position: static !important;
  top: auto !important; right: auto !important; left: auto !important; bottom: auto !important;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; color: #fff;
  flex-shrink: 0;
  padding: 0; margin: 0;
  transition: background 0.18s, color 0.18s;
  -webkit-appearance: none; appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.lhd-mobile-close:hover,
.lhd-mobile-close:focus { background: rgba(139,197,63,0.18); color: var(--lemon-green); outline: none; }
.lhd-mobile-close svg {
  width: 22px; height: 22px;
  display: block;
  pointer-events: none;
  color: currentColor;
  stroke: currentColor;
}
.lhd-mobile-close svg path { stroke: currentColor; }

/* Lock body scroll when drawer is open (defensive — most JS will toggle this) */
body.menu-open,
body.lhd-menu-open,
body.no-scroll {
  overflow: hidden;
}

.lhd-mobile-link {
  display: flex !important; align-items: center; justify-content: space-between;
  padding: 17px 32px;
  min-height: 56px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700;
  color: #fff !important; text-decoration: none;
  /* !important on border-bottom so iOS Safari's native <button> styling can't
     suppress the divider line under Services / About (which are <button>s). */
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  border-left: 0 !important; border-right: 0 !important; border-top: 0 !important;
  cursor: pointer;
  background: transparent; width: 100%; text-align: left;
  position: relative; z-index: 1;
  -webkit-appearance: none; appearance: none;
  -webkit-tap-highlight-color: transparent;
  background-image: none;
  border-radius: 0;
  outline: none;
  transition: color .15s ease;
  box-sizing: border-box;
}
.lhd-sub-title{
  display: none!important;
}
.lhd-sub-close{
  display: none!important;
}
/* Drop the divider on the last menu link (the one immediately followed by the
   .lhd-mobile-actions block) so there's no extra line above the phone. */
.lhd-mobile-main > .lhd-mobile-link:has(+ .lhd-mobile-actions) {
  border-bottom: 0 !important;
}
.lhd-mobile-link:hover,
.lhd-mobile-link:focus,
.lhd-mobile-link:active {
  color: var(--lemon-green);
  background: transparent;
  background-image: none;
}
.lhd-mobile-link:hover .lhd-mobile-link-arrow,
.lhd-mobile-link:focus .lhd-mobile-link-arrow {
  background: rgba(139,197,63,0.15);
  color: var(--lemon-green);
}
/* Every .lhd-mobile-link gets its own border-bottom (no skipping). The
   .lhd-mobile-actions block has padding to provide the visual separator
   before the phone/CTA section without needing a special rule on the last link. */

.lhd-mobile-link-arrow {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: #fff;
  transition: background .15s ease, color .15s ease;
}
.lhd-mobile-actions {
  padding: 14px 24px 20px; display: flex; flex-direction: column; gap: 12px;
}
.lhd-mobile-phone {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--text-light-muted); text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: color .15s ease;
}
.lhd-mobile-phone:hover,
.lhd-mobile-phone:focus,
.lhd-mobile-phone:active {
  color: var(--lemon-green);
}
.lhd-mobile-phone:hover svg,
.lhd-mobile-phone:focus svg {
  color: var(--lemon-green);
}
.lhd-btn--mobile { display: block; text-align: center; padding: 14px; font-size: 15px; }

/* -- MOBILE SUBPANEL ----------------------------------------
   Starts 72px from top so the drawer's topbar (logo + close X) stays visible
   above the subpanel. Subpanel sits below the topbar in stacking order. */
.lhd-mobile-sub {
  position: absolute;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--dark-bg);
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  z-index: 1; /* below the topbar (z-index 2) so logo + close stay visible */
  padding-top: 0;
  -webkit-overflow-scrolling: touch;
}
.lhd-mobile-sub.active { transform: translateX(0); }

.lhd-mobile-sub-header {
  display: flex; align-items: center; justify-content: space-between; padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky; top: 0; background: var(--dark-bg); z-index: 1;
}
.lhd-sub-back {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--text-light-muted); cursor: pointer; border: none; background: none; padding: 0;
}
.lhd-sub-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 800; color: #fff; }
.lhd-sub-close {
  width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; color: #fff; transition: background 0.18s;
}
.lhd-sub-close:hover { background: rgba(255,255,255,0.15); }

.lhd-mobile-sub-items { padding: 4px 0 32px; }
.lhd-mobile-sub-label {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--lemon-green); padding: 20px 24px 8px;
}
.lhd-mobile-sub-link {
  display: flex; align-items: center; gap: 14px; padding: 13px 24px;
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.15s;
}
.lhd-mobile-sub-link:hover { background: rgba(255,255,255,0.04); }
.lhd-mobile-sub-icon {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(139, 197, 63, 0.1); border: 1px solid rgba(139, 197, 63, 0.18);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--lemon-green);
}
.lhd-mobile-sub-icon svg { width: 19px; height: 19px; }
.lhd-mobile-sub-link-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3;
}
.lhd-mobile-sub-link-desc { font-size: 12px; color: var(--text-light-muted); margin-top: 2px; }

/* -- RESPONSIVE --------------------------------------------- */
@media (max-width: 1024px) {
  .lhd-nav,
  .lhd-phone,
  .lhd-btn--primary,
  .lhd-call-block,
  .lhd-header-actions { display: none !important; }
  .lhd-hamburger { display: flex; }
  .lhd-header-inner { gap: 16px; }
  .lhd-header { height: 72px; }
  .lhd-header.scrolled { height: 72px; }
  .lhd-logo img { height: 38px !important; }
}

/* Push page content below fixed header */
.site-content,
.wp-site-blocks,
main.site-main {
  padding-top: var(--header-height) !important;
}

/* ── Industries menu — "coming soon" greyed variants ─── */
.lhd-mega-simple-link--soon,
.lhd-mobile-sub-link--soon {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}
.lhd-mega-simple-link--soon:hover,
.lhd-mobile-sub-link--soon:hover {
    background: transparent !important;
}
