/* ============================================================
   APPTHER — UNIVERSAL NAV + FOOTER
   Font: Montserrat | #0F172A / #6395FF / #FFFFFF
   ============================================================ */

/* ── Variables ── */
:root {
  --un-bg:          #0F172A;
  --un-accent:      #0051E5;
  --un-accent-dark: #003BB5;
  --un-white:       #FFFFFF;
  --un-text-1:      #F1F5F9;
  --un-text-2:      #94A3B8;
  --un-text-3:      #64748B;
  --un-border:      rgba(255, 255, 255, 0.07);
  --un-border-h:    rgba(0, 81, 229, 0.35);
  --un-card-bg:     #1E293B;
  --un-glow:        rgba(0, 81, 229, 0.16);
  --un-ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --un-r:           8px;
}

/* ── Font import ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── Reset helpers ── */
#site-navbar *, #site-navbar *::before, #site-navbar *::after,
#site-footer  *, #site-footer  *::before, #site-footer  *::after {
  box-sizing: border-box;
}

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
#site-navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  transition: background 0.4s var(--un-ease), box-shadow 0.4s var(--un-ease);
  font-family: 'Montserrat', sans-serif;
}
#site-navbar.nav-scrolled {
  background: var(--un-white);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.09);
}

.un-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Logo ── */
.un-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.un-logo img { height: 36px; width: auto; display: block; }
.un-logo .logo-default  { display: block; }
.un-logo .logo-scrolled { display: none;  }
#site-navbar.nav-scrolled .un-logo .logo-default  { display: none;  }
#site-navbar.nav-scrolled .un-logo .logo-scrolled { display: block; }

/* ── Desktop links ── */
.un-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0; padding: 0;
}
.un-nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  transition: all 0.22s var(--un-ease);
  white-space: nowrap;
  text-decoration: none;
}
.un-nav-links > li > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
#site-navbar.nav-scrolled .un-nav-links > li > a {
  color: #334155;
}
#site-navbar.nav-scrolled .un-nav-links > li > a:hover {
  color: var(--un-accent);
  background: rgba(0, 81, 229, 0.07);
}

/* ── AI Badge pill ── */
.un-nav-ai-item { margin-right: 6px; }
.un-nav-ai-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 5px 14px 5px 5px !important;
  border-radius: 50px !important;
  border: 1.5px solid rgba(0,81,229,0.7) !important;
  background: rgba(0,81,229,0.12) !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  animation: unBadgeGlow 2.4s ease-in-out infinite;
}
.un-nav-ai-badge:hover {
  background: rgba(0,81,229,0.22) !important;
  border-color: #0051E5 !important;
}
#site-navbar.nav-scrolled .un-nav-ai-badge {
  border-color: rgba(0,81,229,0.7) !important;
  background: rgba(0,81,229,0.10) !important;
}
@keyframes unBadgeGlow {
  0%, 100% {
    box-shadow: 0 0 8px rgba(0,81,229,0.25), 0 0 0 0 rgba(0,81,229,0);
    border-color: rgba(0,81,229,0.6);
  }
  50% {
    box-shadow: 0 0 18px rgba(0,81,229,0.65), 0 0 32px rgba(0,81,229,0.25);
    border-color: #0051E5;
  }
}
.un-badge-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0051E5 0%, #003BB5 100%);
  box-shadow: 0 0 10px rgba(0,81,229,0.6);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.5rem;
  color: #fff;
}
.un-badge-label { color: rgba(255,255,255,0.95); }
.un-badge-label .un-ai-word { color: #5B9BFF; font-weight: 800; }
#site-navbar.nav-scrolled .un-badge-label { color: #1e3a6e; }

.un-caret {
  font-size: 0.6rem;
  transition: transform 0.28s ease;
  display: inline-block;
}
.un-has-drop:hover .un-caret { transform: rotate(180deg); }

/* ── CTA button in nav (outline) ── */
.un-nav-cta {
  background: transparent !important;
  color: var(--un-white) !important;
  border: 1.5px solid rgba(255,255,255,0.75) !important;
  border-radius: var(--un-r) !important;
  font-weight: 700 !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  padding: 8px 22px !important;
  margin-left: 6px;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
}
.un-nav-cta:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: var(--un-white) !important;
  color: var(--un-white) !important;
  transform: translateY(-1px) !important;
}
#site-navbar.nav-scrolled .un-nav-cta {
  border-color: #0F172A !important;
  color: #0F172A !important;
  background: transparent !important;
}
#site-navbar.nav-scrolled .un-nav-cta:hover {
  background: #0F172A !important;
  color: var(--un-white) !important;
  border-color: #0F172A !important;
}

/* ── Dropdown ── */
.un-has-drop { position: relative; }
.un-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #1a2744;
  border: 1px solid rgba(0, 81, 229, 0.14);
  border-radius: 12px;
  min-width: 210px;
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s var(--un-ease);
  z-index: 9999;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.36);
}
.un-has-drop:hover .un-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.un-dropdown li a {
  display: block;
  padding: 8px 18px;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--un-text-2);
  transition: all 0.18s ease;
  text-decoration: none;
}
.un-dropdown li a:hover {
  color: var(--un-accent);
  background: rgba(0, 81, 229, 0.07);
  padding-left: 24px;
}
#site-navbar.nav-scrolled .un-dropdown {
  background: #fff;
  border-color: #E2E8F0;
}
#site-navbar.nav-scrolled .un-dropdown li a { color: #475569; }
#site-navbar.nav-scrolled .un-dropdown li a:hover { color: var(--un-accent); background: rgba(0,81,229,0.06); }

/* ════ MEGA MENU ════ */
.un-nav-inner { position: relative; overflow: visible; }
.un-has-drop.mega-item { position: static; }

.mega-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 940px;
  max-width: calc(100vw - 32px);
  background: #0a1628;
  border: 1px solid rgba(0,81,229,0.18);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.03);
  display: flex;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 9999;
  pointer-events: none;
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0; right: 0;
  height: 14px;
}
.un-has-drop.mega-item:hover .mega-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ── Left sidebar ── */
.mega-left {
  width: 230px;
  flex-shrink: 0;
  background: #060f1e;
  padding: 20px 0 16px;
  border-right: 1px solid rgba(255,255,255,0.04);
}
.mega-section-title {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  padding: 0 18px 14px;
  display: block;
}
.mega-cats { list-style: none; padding: 0; margin: 0; }
.mega-cat {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 18px 10px 15px;
  cursor: pointer;
  transition: all 0.16s ease;
  border-left: 3px solid transparent;
  text-decoration: none;
}
.mega-cat:hover { background: rgba(0,81,229,0.1); border-left-color: rgba(0,81,229,0.5); }
.mega-cat.active { background: rgba(0,81,229,0.14); border-left-color: #0051E5; }
.mega-cat-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: all 0.16s ease;
}
.mega-cat:hover .mega-cat-icon { background: rgba(0,81,229,0.2); color: #7ab4ff; }
.mega-cat.active .mega-cat-icon { background: #0051E5; color: #fff; box-shadow: 0 4px 12px rgba(0,81,229,0.4); }
.mega-cat-info { display: flex; flex-direction: column; gap: 1px; }
.mega-cat-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: color 0.16s;
  line-height: 1.25;
}
.mega-cat:hover .mega-cat-name, .mega-cat.active .mega-cat-name { color: #fff; }
.mega-cat-count {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.25);
  font-weight: 400;
}
.mega-cat.active .mega-cat-count { color: rgba(255,255,255,0.45); }

/* ── Right content ── */
.mega-right {
  flex: 1;
  padding: 22px 22px 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.mega-panel { display: none; flex-direction: column; gap: 16px; flex: 1; }
.mega-panel.active { display: flex; }

.mega-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mega-panel-head-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(0,81,229,0.18);
  display: flex; align-items: center; justify-content: center;
  color: #7ab4ff; font-size: 0.95rem; flex-shrink: 0;
}
.mega-panel-head strong { display: block; font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.mega-panel-head span { font-size: 0.73rem; color: rgba(255,255,255,0.36); }

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  flex: 1;
  align-content: start;
}
.mega-svc {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  text-decoration: none;
  transition: all 0.18s ease;
}
.mega-svc:hover {
  background: rgba(0,81,229,0.1);
  border-color: rgba(0,81,229,0.28);
  transform: translateY(-1px);
}
.mega-svc-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: rgba(0,81,229,0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.7rem; color: #7ab4ff;
  transition: all 0.18s ease;
}
.mega-svc:hover .mega-svc-icon { background: #0051E5; color: #fff; }
.mega-svc-text strong {
  display: block; font-size: 0.75rem; font-weight: 600;
  color: rgba(255,255,255,0.82); margin-bottom: 3px; line-height: 1.3;
}
.mega-svc-text span { font-size: 0.68rem; color: rgba(255,255,255,0.36); line-height: 1.4; }

.mega-cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: rgba(0,81,229,0.07);
  border-radius: 10px; border: 1px solid rgba(0,81,229,0.15);
  margin-top: 4px;
}
.mega-cta strong { display: block; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.82); }
.mega-cta span { font-size: 0.69rem; color: rgba(255,255,255,0.32); }
.mega-cta-btns { display: flex; gap: 7px; flex-shrink: 0; }
.mega-btn-ghost {
  padding: 6px 13px; border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: all 0.18s; white-space: nowrap;
}
.mega-btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.mega-btn-solid {
  padding: 6px 13px; border-radius: 7px;
  background: #0051E5; font-size: 0.72rem; font-weight: 600;
  color: #fff; text-decoration: none; transition: all 0.18s; white-space: nowrap;
}
.mega-btn-solid:hover { background: #003BB5; transform: translateY(-1px); }
#site-navbar.nav-scrolled .mega-menu { background: #fff; border-color: #dde5f0; box-shadow: 0 24px 60px rgba(0,0,0,0.14); }
#site-navbar.nav-scrolled .mega-left { background: #f4f7fc; border-right-color: #e8edf5; }
#site-navbar.nav-scrolled .mega-section-title { color: #94a3b8; }
#site-navbar.nav-scrolled .mega-cat:hover { background: rgba(0,81,229,0.06); }
#site-navbar.nav-scrolled .mega-cat.active { background: rgba(0,81,229,0.09); }
#site-navbar.nav-scrolled .mega-cat-icon { background: #e8edf5; color: #64748b; }
#site-navbar.nav-scrolled .mega-cat.active .mega-cat-icon { background: #0051E5; color: #fff; }
#site-navbar.nav-scrolled .mega-cat-name { color: #475569; }
#site-navbar.nav-scrolled .mega-cat:hover .mega-cat-name,
#site-navbar.nav-scrolled .mega-cat.active .mega-cat-name { color: #0f172a; }
#site-navbar.nav-scrolled .mega-panel-head { border-bottom-color: #e8edf5; }
#site-navbar.nav-scrolled .mega-panel-head strong { color: #0f172a; }
#site-navbar.nav-scrolled .mega-panel-head span { color: #94a3b8; }
#site-navbar.nav-scrolled .mega-svc { background: #f8fafc; border-color: #e8edf5; }
#site-navbar.nav-scrolled .mega-svc:hover { background: rgba(0,81,229,0.06); border-color: rgba(0,81,229,0.2); }
#site-navbar.nav-scrolled .mega-svc-icon { background: rgba(0,81,229,0.08); }
#site-navbar.nav-scrolled .mega-svc-text strong { color: #1e293b; }
#site-navbar.nav-scrolled .mega-svc-text span { color: #64748b; }
#site-navbar.nav-scrolled .mega-cta { background: #f1f5fb; border-color: #dde5f0; }
#site-navbar.nav-scrolled .mega-cta strong { color: #1e293b; }
#site-navbar.nav-scrolled .mega-cta span { color: #94a3b8; }
#site-navbar.nav-scrolled .mega-btn-ghost { border-color: #cbd5e1; color: #475569; }
#site-navbar.nav-scrolled .mega-btn-ghost:hover { border-color: #0051E5; color: #0051E5; }

/* ════ INDUSTRIES MEGA ════ */
.un-has-drop.ind-item { position: static; }
.ind-mega {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 700px;
  max-width: calc(100vw - 32px);
  background: #0a1628;
  border: 1px solid rgba(0,81,229,0.18);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.03);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 9999;
  pointer-events: none;
}
.ind-mega::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0; right: 0;
  height: 14px;
}
.un-has-drop.ind-item:hover .ind-mega {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.ind-mega-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ind-mega-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4d90ff;
  display: block;
  margin-bottom: 3px;
}
.ind-mega-heading {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.ind-mega-view-all {
  font-size: 0.73rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: color 0.16s;
}
.ind-mega-view-all:hover { color: #7ab4ff; }
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.ind-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  text-decoration: none;
  transition: all 0.18s ease;
}
.ind-card:hover {
  background: rgba(0,81,229,0.1);
  border-color: rgba(0,81,229,0.28);
  transform: translateY(-1px);
}
.ind-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.88rem;
  transition: all 0.18s;
}
.ind-card-name {
  display: block;
  font-size: 0.77rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  line-height: 1.3;
  margin-bottom: 2px;
}
.ind-card:hover .ind-card-name { color: #fff; }
.ind-card-tag {
  font-size: 0.64rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.3;
}
#site-navbar.nav-scrolled .ind-mega { background: #fff; border-color: #dde5f0; box-shadow: 0 24px 60px rgba(0,0,0,0.14); }
#site-navbar.nav-scrolled .ind-mega-header { border-bottom-color: #e8edf5; }
#site-navbar.nav-scrolled .ind-mega-eyebrow { color: #0051E5; }
#site-navbar.nav-scrolled .ind-mega-heading { color: #0f172a; }
#site-navbar.nav-scrolled .ind-mega-view-all { color: #94a3b8; }
#site-navbar.nav-scrolled .ind-mega-view-all:hover { color: #0051E5; }
#site-navbar.nav-scrolled .ind-card { background: #f8fafc; border-color: #e8edf5; }
#site-navbar.nav-scrolled .ind-card:hover { background: rgba(0,81,229,0.06); border-color: rgba(0,81,229,0.2); }
#site-navbar.nav-scrolled .ind-card-name { color: #1e293b; }
#site-navbar.nav-scrolled .ind-card:hover .ind-card-name { color: #0f172a; }
#site-navbar.nav-scrolled .ind-card-tag { color: #94a3b8; }

/* ════ RESOURCES DROPDOWN ════ */
.un-has-drop.res-item { position: relative; }
.res-drop {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 300px;
  background: #0a1628;
  border: 1px solid rgba(0,81,229,0.18);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 9999;
  pointer-events: none;
}
.res-drop::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0; right: 0;
  height: 14px;
}
.un-has-drop.res-item:hover .res-drop {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.res-drop-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.16s;
}
.res-drop-item:hover { background: rgba(0,81,229,0.1); }
.res-drop-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(0,81,229,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #7ab4ff;
  font-size: 0.88rem;
  transition: all 0.16s;
}
.res-drop-item:hover .res-drop-icon { background: #0051E5; color: #fff; }
.res-drop-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1px;
}
.res-drop-text span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
}
#site-navbar.nav-scrolled .res-drop { background: #fff; border-color: #dde5f0; box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
#site-navbar.nav-scrolled .res-drop-item:hover { background: rgba(0,81,229,0.06); }
#site-navbar.nav-scrolled .res-drop-icon { background: rgba(0,81,229,0.08); }
#site-navbar.nav-scrolled .res-drop-item:hover .res-drop-icon { background: #0051E5; color: #fff; }
#site-navbar.nav-scrolled .res-drop-text strong { color: #1e293b; }
#site-navbar.nav-scrolled .res-drop-text span { color: #64748b; }

/* ── Hamburger ── */
.un-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.un-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--un-white);
  border-radius: 2px;
  transition: background 0.3s ease;
}
#site-navbar.nav-scrolled .un-hamburger span { background: #0F172A; }

/* ════════════════════════════════
   DRAWER (mobile)
════════════════════════════════ */
.un-drawer {
  position: fixed;
  top: 0; left: -100%;
  width: min(85vw, 360px);
  height: 100vh;
  background: #0d1829;
  border-right: 1px solid var(--un-border);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transition: left 0.38s var(--un-ease);
  overflow-y: auto;
  font-family: 'Montserrat', sans-serif;
}
.un-drawer.open { left: 0; }

.un-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--un-border);
}
.un-drawer-close {
  background: none; border: none;
  color: var(--un-text-2); font-size: 1.2rem; cursor: pointer; padding: 4px;
  transition: color 0.2s;
}
.un-drawer-close:hover { color: var(--un-white); }

.un-drawer-nav { flex: 1; padding: 12px 0; list-style: none; margin: 0; }

.un-drawer-group-btn {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  color: var(--un-text-2); cursor: pointer; transition: all 0.2s;
}
.un-drawer-group-btn:hover { color: var(--un-white); background: rgba(255,255,255,0.03); }
.un-drawer-group-btn .un-arrow { font-size: 0.62rem; transition: transform 0.3s ease; display: inline-block; }
.un-drawer-group-btn.open { color: var(--un-accent); }
.un-drawer-group-btn.open .un-arrow { transform: rotate(180deg); }

.un-drawer-sub {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  background: rgba(0,0,0,0.15); list-style: none; margin: 0; padding: 0;
}
.un-drawer-sub.open { max-height: 800px; }
.un-drawer-sub li a {
  display: block;
  padding: 9px 22px 9px 38px;
  font-size: 0.82rem; font-weight: 400; color: var(--un-text-3);
  transition: all 0.2s; text-decoration: none;
}
.un-drawer-sub li a:hover { color: var(--un-accent); padding-left: 44px; }

.un-drawer-link {
  display: block; padding: 13px 22px;
  font-size: 0.9rem; font-weight: 500; color: var(--un-text-2);
  transition: all 0.2s; text-decoration: none;
}
.un-drawer-link:hover { color: var(--un-white); background: rgba(255,255,255,0.03); }

.un-drawer-divider { height: 1px; background: var(--un-border); margin: 6px 0; }
.un-drawer-cta {
  display: block; margin: 10px 14px 0;
  background: var(--un-accent); color: var(--un-white) !important;
  border-radius: var(--un-r); text-align: center;
  font-weight: 600 !important; padding: 12px 22px !important;
  text-decoration: none; font-size: 0.9rem;
  transition: background 0.2s;
}
.un-drawer-cta:hover { background: var(--un-accent-dark) !important; }

.un-drawer-footer {
  padding: 18px 22px; border-top: 1px solid var(--un-border);
}
.un-drawer-footer p { font-size: 0.77rem; color: var(--un-text-3); margin-bottom: 12px; font-family: 'Montserrat', sans-serif; }
.un-drawer-socials { display: flex; gap: 8px; }
.un-drawer-socials a {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--un-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--un-text-3); font-size: 0.82rem; transition: all 0.2s; text-decoration: none;
}
.un-drawer-socials a:hover { border-color: var(--un-accent); color: var(--un-accent); }

.un-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 9998; opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.un-overlay.active { opacity: 1; pointer-events: auto; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
#site-footer {
  font-family: 'Montserrat', sans-serif;
  background: #0B1120;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 60px 0 0;
}
.un-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* 5-column grid */
.un-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.3fr 1.3fr 1.4fr;
  gap: 36px;
  margin-bottom: 48px;
}

/* Column headings */
.un-footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Link lists */
.un-footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.un-footer-col ul li a {
  font-size: 0.875rem;
  font-weight: 400;
  color: #8FA0BC;
  transition: color 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
}
.un-footer-col ul li a:hover { color: #FFFFFF; }

/* Contact icon cards */
.un-footer-connect { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.un-connect-card {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.un-connect-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--un-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
  color: #fff;
  transition: background 0.2s ease;
}
.un-connect-card:hover .un-connect-icon { background: var(--un-accent-dark); }
.un-connect-card-text { display: flex; flex-direction: column; gap: 1px; }
.un-connect-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: #8FA0BC;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.un-connect-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--un-accent);
  transition: color 0.2s;
}
.un-connect-card:hover .un-connect-value { color: #FFFFFF; }

/* Social icons — dark rounded squares */
.un-footer-socials {
  display: flex;
  gap: 10px;
}
.un-footer-socials a {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: #1A2540;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8FA0BC;
  font-size: 0.9rem;
  transition: all 0.22s ease;
  text-decoration: none;
}
.un-footer-socials a:hover {
  background: var(--un-accent);
  border-color: var(--un-accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Bottom bar */
.un-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}
.un-footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.un-footer-bottom-logo img {
  height: 28px;
  width: auto;
  display: block;
}
.un-footer-copyright {
  font-size: 0.82rem;
  font-weight: 400;
  color: #5A6A85;
  margin: 0;
}
.un-footer-legal { display: flex; gap: 22px; align-items: center; }
.un-footer-legal a {
  font-size: 0.82rem;
  font-weight: 400;
  color: #5A6A85;
  transition: color 0.2s ease;
  text-decoration: none;
}
.un-footer-legal a:hover { color: #FFFFFF; }

/* ── Page body padding for fixed nav ── */
body { padding-top: 70px !important; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .un-nav-links { gap: 2px; }
  .un-nav-links > li > a { padding: 7px 9px; font-size: 0.83rem; }
}
@media (max-width: 900px) {
  .un-nav-links  { display: none; }
  .un-hamburger  { display: flex; }
  .un-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .un-footer-grid { grid-template-columns: 1fr; }
  .un-footer-bottom { flex-direction: column; text-align: center; }
}
