
/* =========================================================
   HEADER.CSS
   Header, desktop navigation, dropdowns, and mobile drawer only.
   ========================================================= */

.lgic-header {
  --header-muted: #6D7A90;
  font-family: "Montserrat", system-ui, sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11,30,58,.06);
  box-shadow: 0 12px 40px rgba(11,30,58,.05);
}

.lgic-wrap,
.lgic-header .wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 10px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.lgic-brand img,
.lgic-header .brand img {
  height: 40px;
  display: block;
  transition: transform .25s ease, filter .25s ease;
}

.lgic-brand:hover img,
.lgic-header .brand:hover img {
  transform: translateY(-1px) scale(1.03);
  filter: drop-shadow(0 4px 10px rgba(11,30,58,.12));
}

/* ------------------------------
   Desktop nav
   ------------------------------ */
nav[aria-label="Primary"] {
  display: flex;
  justify-content: center;
}

.lgic-menu,
.lgic-header .menu {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(245,248,255,0.92));
  box-shadow:
    inset 0 0 0 1px rgba(11,30,58,.05),
    0 8px 22px rgba(11,30,58,.05);
}

.lgic-link,
.lgic-header .link {
  position: relative;
  text-decoration: none;
  color: #5f6d86;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 12px;
  padding: 10px 4px;
  transition: color .25s ease, opacity .25s ease;
  white-space: nowrap;
}

.lgic-link::after,
.lgic-header .link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--blue-dark));
  transform: translateX(-50%);
  transition: width .24s ease;
}

.lgic-link:hover,
.lgic-link:focus-visible,
.lgic-header .link:hover,
.lgic-header .link:focus-visible {
  color: var(--blue-dark);
  outline: none;
}

.lgic-link:hover::after,
.lgic-link:focus-visible::after,
.lgic-header .link:hover::after,
.lgic-header .link:focus-visible::after {
  width: 70%;
}

.lgic-has-dd,
.lgic-header .has-dd {
  position: relative;
  padding-bottom: 8px;
}

.lgic-has-dd::after,
.lgic-header .has-dd::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.lgic-link.lgic-has-caret,
.lgic-header .link.has-caret {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lgic-caret,
.lgic-header .caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--blue-dark);
  border-bottom: 2px solid var(--blue-dark);
  transform: rotate(45deg);
  transition: transform .2s ease, opacity .2s ease;
  opacity: .85;
}

.lgic-has-dd:hover .lgic-caret,
.lgic-has-dd:focus-within .lgic-caret,
.lgic-header .has-dd:hover .caret,
.lgic-header .has-dd:focus-within .caret {
  transform: rotate(225deg) translateY(1px);
}

/* ------------------------------
   Desktop dropdowns
   ------------------------------ */
.lgic-dropdown,
.lgic-header .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 16px);
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(247,250,255,0.98));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 18px 18px 22px 22px;
  box-shadow:
    0 24px 54px rgba(11,30,58,.16),
    0 0 0 1px rgba(11,30,58,.06),
    inset 0 1px 0 rgba(255,255,255,.75);
  min-width: 260px;
  padding: 10px 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.lgic-dropdown-inner,
.lgic-header .dropdown-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lgic-dropdown-inner-areas,
.lgic-header .dropdown-inner-areas {
  min-width: 300px;
}

.lgic-dropdown-group,
.lgic-header .dropdown-group {
  position: relative;
}

.lgic-dropdown-group::after,
.lgic-header .dropdown-group::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 18px;
  height: 100%;
}

.lgic-dropdown-group-trigger,
.lgic-header .dropdown-group-trigger {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 11px 40px 11px 14px;
  border-radius: 14px;
  background: transparent;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  cursor: default;
  min-width: 100%;
}

.lgic-dropdown-group-trigger:focus,
.lgic-header .dropdown-group-trigger:focus {
  outline: none;
}

.lgic-dropdown-group-trigger .label,
.lgic-header .dropdown-group-trigger .label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink);
  font-size: 12px;
}

.lgic-dropdown-group-trigger .meta,
.lgic-header .dropdown-group-trigger .meta {
  font-weight: 500;
  font-size: 11px;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: .01em;
  color: var(--header-muted);
}

.lgic-dropdown-group-trigger::after,
.lgic-header .dropdown-group-trigger::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--blue-dark);
  border-bottom: 2px solid var(--blue-dark);
  transform: translateY(-55%) rotate(-45deg);
  opacity: .8;
}

.lgic-dropdown-group:hover .lgic-dropdown-group-trigger,
.lgic-dropdown-group:focus-within .lgic-dropdown-group-trigger,
.lgic-header .dropdown-group:hover .dropdown-group-trigger,
.lgic-header .dropdown-group:focus-within .dropdown-group-trigger {
  background: linear-gradient(135deg, rgba(58,108,243,0.10), rgba(24,58,138,0.14));
  box-shadow:
    0 10px 24px rgba(11,30,58,.12),
    inset 0 1px 0 rgba(255,255,255,.45);
  transform: translateY(-1px);
}

.lgic-dropdown-submenu,
.lgic-header .dropdown-submenu {
  position: absolute;
  left: calc(100% - 6px);
  top: -6px;
  min-width: 220px;
  padding: 8px 6px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(248,250,255,0.98));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 22px 46px rgba(11,30,58,.14),
    0 0 0 1px rgba(11,30,58,.06),
    inset 0 1px 0 rgba(255,255,255,.7);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 30;
}

.lgic-dropdown-group:hover .lgic-dropdown-submenu,
.lgic-dropdown-group:focus-within .lgic-dropdown-submenu,
.lgic-dropdown-submenu:hover,
.lgic-dropdown-submenu:focus-within,
.lgic-header .dropdown-group:hover .dropdown-submenu,
.lgic-header .dropdown-group:focus-within .dropdown-submenu,
.lgic-header .dropdown-submenu:hover,
.lgic-header .dropdown-submenu:focus-within {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lgic-dropdown-submenu a,
.lgic-header .dropdown-submenu a {
  padding: 9px 12px;
  white-space: nowrap;
}

.lgic-dropdown-submenu a .label,
.lgic-header .dropdown-submenu a .label {
  font-size: 12px;
}

.lgic-dropdown a,
.lgic-header .dropdown a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  text-decoration: none;
  background: transparent;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.lgic-dropdown a span.label,
.lgic-header .dropdown a span.label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink);
}

.lgic-dropdown a span.meta,
.lgic-header .dropdown a span.meta {
  font-weight: 500;
  font-size: 11px;
  text-transform: none;
  letter-spacing: .01em;
  color: var(--header-muted);
}

.lgic-dropdown a:hover,
.lgic-dropdown a:focus-visible,
.lgic-header .dropdown a:hover,
.lgic-header .dropdown a:focus-visible {
  outline: none;
  background: linear-gradient(135deg, rgba(58,108,243,0.10), rgba(24,58,138,0.14));
  box-shadow:
    0 10px 24px rgba(11,30,58,.12),
    inset 0 1px 0 rgba(255,255,255,.45);
  transform: translateY(-1px);
}

.lgic-has-dd:hover .lgic-dropdown,
.lgic-has-dd:focus-within .lgic-dropdown,
.lgic-header .has-dd:hover .dropdown,
.lgic-header .has-dd:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 10px);
}

/* ------------------------------
   Header CTAs
   ------------------------------ */
.lgic-ctas,
.lgic-header .ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-btn,
.lgic-header .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid rgba(11,30,58,.12);
  color: var(--blue-dark);
  background: #fff;
  box-shadow: 0 8px 22px rgba(11,30,58,.08);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  white-space: nowrap;
}

.header-btn:hover,
.lgic-header .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(11,30,58,.18);
  background: #f7f9ff;
}

.header-btn-primary,
.lgic-header .btn-primary,
.lgic-drawer .btn-primary {
  background: linear-gradient(130deg, var(--blue), var(--blue-dark));
  color: #fff;
  border: none;
  box-shadow: 0 14px 34px rgba(58,108,243,.35);
}

.header-btn-primary:hover,
.lgic-header .btn-primary:hover,
.lgic-drawer .btn-primary:hover {
  background: linear-gradient(130deg, #456ff9, #102f76);
}

/* ------------------------------
   Mobile header controls
   ------------------------------ */
.lgic-mob,
.lgic-header .mob {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.lgic-icon-btn,
.lgic-header .icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--blue-dark);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(11,30,58,.25);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.lgic-icon-btn:hover,
.lgic-header .icon-btn:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(11,30,58,.3);
}

.lgic-icon-btn svg,
.lgic-header .icon-btn svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 2;
}

.lgic-burger-icon,
.lgic-header .burger-icon { display: inline-block; }

.lgic-close-icon,
.lgic-header .close-icon {
  display: none;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.nav-open .lgic-burger-icon,
.nav-open .lgic-header .burger-icon { display: none; }

.nav-open .lgic-close-icon,
.nav-open .lgic-header .close-icon { display: inline-block; }

@media (max-width: 1024px) {
  nav[aria-label="Primary"],
  .header-btn-primary,
  .lgic-header .btn-primary,
  .lgic-ctas .header-btn[href^="tel"],
  .lgic-header .ctas .btn[href^="tel"] {
    display: none;
  }

  .lgic-mob,
  .lgic-header .mob {
    display: flex;
  }

  .lgic-wrap,
  .lgic-header .wrap {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }
}

/* ------------------------------
   Mobile drawer
   ------------------------------ */
.lgic-drawer,
.drawer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 950;
  display: none;
  flex-direction: column;
  padding: 16px 18px 24px;
  background:
    radial-gradient(circle at top left, rgba(120, 156, 255, 0.22), transparent 42%),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(7,18,41,0.94), rgba(3,9,24,0.98));
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  animation: lgic-fadeIn .25s ease;
}

@keyframes lgic-fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lgic-drawer[aria-hidden="false"],
.drawer[aria-hidden="false"] {
  display: flex;
}

.lgic-drawer-inner,
.drawer .drawer-inner {
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lgic-drawer-card,
.drawer .drawer-card {
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(96,132,235,0.18), transparent 38%),
    radial-gradient(circle at top right, rgba(212,175,55,0.08), transparent 24%),
    linear-gradient(145deg, rgba(8,15,48,0.98), rgba(4,9,28,0.99));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 22px 60px rgba(3,8,24,0.88),
    0 0 0 1px rgba(155,178,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: 18px 18px 16px;
}

.lgic-drawer-card.meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 14px;
}

.lgic-drawer-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: rgba(212,175,55,0.10);
  color: rgba(245,224,154,0.96);
  border: 1px solid rgba(212,175,55,0.22);
}

.lgic-drawer-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #4CD964;
  box-shadow: 0 0 8px rgba(76,217,100,0.9);
}

.lgic-drawer-meta-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #F8FAFF;
}

.lgic-drawer-meta-sub {
  font-size: 11px;
  color: rgba(198,210,235,0.88);
  letter-spacing: .03em;
}

.lgic-drawer-main-nav,
.drawer .drawer-main-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.lgic-drawer-main-nav a,
.lgic-drawer-link-toggle,
.drawer .drawer-main-nav a,
.drawer .drawer-link-toggle {
  position: relative;
  text-decoration: none;
  color: #F3F6FD;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 13px;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  border: none;
}

.lgic-drawer-main-nav a,
.drawer .drawer-main-nav a {
  display: block;
  padding: 9px 4px;
}

.lgic-drawer-main-nav a::before,
.lgic-drawer-link-toggle::before,
.drawer .drawer-main-nav a::before,
.drawer .drawer-link-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(74,108,214,0.22), rgba(20,42,108,0.34));
  opacity: 0;
  transform: scale(0.94);
  transition: opacity .18s ease, transform .18s ease;
  z-index: -1;
}

.lgic-drawer-main-nav a + a,
.drawer .drawer-main-nav a + a {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 4px;
}

.lgic-drawer-main-nav a:hover::before,
.drawer .drawer-main-nav a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.lgic-drawer-main-row,
.drawer .drawer-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.lgic-drawer-main-row .lgic-drawer-main-link,
.drawer .drawer-main-row .drawer-main-link {
  flex: 1;
  padding: 9px 0;
}

.lgic-drawer-main-row .lgic-drawer-link-toggle,
.drawer .drawer-main-row .drawer-link-toggle {
  min-width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.20);
  background: linear-gradient(180deg, rgba(17,28,78,0.92), rgba(8,15,48,0.98));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 8px 18px rgba(2,8,24,0.34);
  cursor: pointer;
}

.lgic-drawer-main-row .lgic-drawer-link-toggle-icon,
.drawer .drawer-main-row .drawer-link-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 11px;
  transform: rotate(0deg);
  transition: transform .2s ease;
}

.lgic-drawer-link-toggle.open,
.drawer .drawer-link-toggle.open {
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(92,123,224,0.26));
  border-color: rgba(227,205,132,0.42);
}

.lgic-drawer-link-toggle.open .lgic-drawer-link-toggle-icon,
.drawer .drawer-link-toggle.open .drawer-link-toggle-icon {
  transform: rotate(180deg);
}

.lgic-drawer-submenu,
.drawer .drawer-submenu {
  margin-top: 6px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(94,126,215,0.16), transparent 34%),
    linear-gradient(180deg, rgba(12,22,62,0.98), rgba(7,15,42,0.99));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    inset 0 0 0 1px rgba(32,56,140,0.20),
    0 12px 28px rgba(3,8,24,0.28);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  padding: 0 10px 0 14px;
  transition:
    max-height .38s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity .25s ease-out,
    transform .25s ease-out,
    padding .25s ease-out;
}

.lgic-drawer-submenu.open,
.drawer .drawer-submenu.open {
  max-height: 260px;
  opacity: 1;
  transform: translateY(0);
  padding: 10px 10px 8px 14px;
}

.lgic-drawer-submenu-areas,
.drawer .drawer-submenu-areas {
  overflow: hidden;
}

.lgic-drawer-submenu-areas.open,
.drawer .drawer-submenu-areas.open {
  max-height: 72vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding-right: 6px;
}

.lgic-drawer-submenu-title,
.drawer .drawer-submenu-title {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(239,220,157,0.82);
  margin-bottom: 6px;
  opacity: 0.95;
}

.lgic-drawer-services,
.drawer .drawer-services {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lgic-drawer-services a,
.drawer .drawer-services a {
  text-decoration: none;
  color: #EAF0FB;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  padding: 7px 4px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.lgic-drawer-services a::before,
.drawer .drawer-services a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(58,96,198,0.22));
  opacity: 0;
  transform: scale(0.94);
  transition: opacity .18s ease, transform .18s ease;
  z-index: -1;
}

.lgic-drawer-services a:hover::before,
.drawer .drawer-services a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.lgic-drawer .lgic-bottom-btns,
.drawer .bottom-btns {
  display: grid;
  gap: 10px;
}

.lgic-drawer .lgic-bottom-btns .header-btn,
.lgic-drawer .lgic-bottom-btns .header-btn-primary,
.drawer .bottom-btns .btn,
.drawer .bottom-btns .btn-primary {
  width: 100%;
  justify-content: center;
}

.lgic-drawer-region-toggle,
.drawer .drawer-region-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 6px;
  background: rgba(255,255,255,0.025);
  font-family: "Montserrat", system-ui, sans-serif;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: #F1F5FD;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 11px;
  cursor: pointer;
  text-align: left;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.lgic-drawer-region-toggle:hover,
.lgic-drawer-region-toggle.open,
.drawer .drawer-region-toggle:hover,
.drawer .drawer-region-toggle.open {
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(58,96,198,0.22));
  border-color: rgba(226,205,136,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

.lgic-drawer-region-panel,
.drawer .drawer-region-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-2px);
  transition: max-height .28s ease, opacity .2s ease, transform .2s ease;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 8px;
  pointer-events: none;
  touch-action: pan-y;
}

.lgic-drawer-region-panel.open,
.drawer .drawer-region-panel.open {
  max-height: 1200px;
  overflow: visible;
  opacity: 1;
  transform: translateY(0);
  margin-top: 4px;
  pointer-events: auto;
  padding-right: 4px;
}

.lgic-drawer-region-panel a,
.drawer .drawer-region-panel a {
  color: rgba(225,232,245,0.92);
}

/* ------------------------------
   Header compatibility layer
   Current header.html uses legacy short class names.
   This keeps header.css compatible without editing includes/header.html.
   ------------------------------ */
.lgic-header .brand {
  display: inline-flex;
  align-items: center;
}

.lgic-header .brand img {
  max-width: 210px;
  width: auto;
  object-fit: contain;
}

.lgic-header .menu > li {
  position: relative;
}

.lgic-header .ctas .btn,
.drawer .bottom-btns .btn {
  min-height: 40px;
}

.drawer .bottom-btns {
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

.drawer .drawer-region-list {
  display: grid;
  gap: 8px;
}

.drawer .drawer-region-item {
  display: block;
}

.drawer .drawer-region-toggle-icon {
  display: inline-flex;
  transition: transform .2s ease;
}

.drawer .drawer-region-toggle.open .drawer-region-toggle-icon {
  transform: rotate(180deg);
}