:root {
  --blue-ink: #f8faff;
  --blue-muted: #c9d4f5;
  --blue-hover: rgba(255, 255, 255, 0.12);
  --blue-panel: rgba(18, 30, 64, 0.72);
  --blue-panel-soft: rgba(30, 46, 88, 0.72);
  --amber: #ffb703;
  --amber-soft: #ffd166;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}

#hanna-nav-wrap,
#hanna-nav-wrap * {
  font-family: "Be Vietnam Pro", sans-serif;
}

#hanna-nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: flex;
  justify-content: center;
  padding: 14px 20px;
  transition: padding 0.3s;
  pointer-events: none;
}

.hanna-navbar {
  pointer-events: all;
  background: transparent;
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  width: 100%;
  max-width: 1260px;
  height: 72px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 10px 0 28px;
  box-shadow: var(--shadow);
  transition: height 0.3s, box-shadow 0.3s;
}

.hanna-logo img {
  display: block;
  width: auto;
  max-height: 44px;
}

.hanna-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hanna-brand-neon {
  font-size: 22px;
  font-weight: 800;
  color: #b8e5ff;
  text-shadow:
    0 0 6px rgba(66, 165, 245, 0.95),
    0 0 14px rgba(66, 165, 245, 0.78),
    0 0 28px rgba(59, 130, 246, 0.65),
    0 0 48px rgba(37, 99, 235, 0.52);
  letter-spacing: 0.02em;
  animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
  from {
    text-shadow:
      0 0 5px rgba(66, 165, 245, 0.8),
      0 0 12px rgba(66, 165, 245, 0.62),
      0 0 22px rgba(37, 99, 235, 0.5);
  }
  to {
    text-shadow:
      0 0 8px rgba(125, 211, 252, 1),
      0 0 18px rgba(96, 165, 250, 0.9),
      0 0 36px rgba(59, 130, 246, 0.75),
      0 0 58px rgba(37, 99, 235, 0.6);
  }
}

.hanna-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hanna-link,
.hanna-dropdown > a {
  text-decoration: none;
  color: var(--blue-ink);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.hanna-link:hover,
.hanna-dropdown > a:hover {
  background: var(--blue-hover);
  color: #ffffff;
}

.hanna-dropdown {
  position: relative;
}

.hanna-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.hanna-dropdown .caret {
  font-size: 11px;
  margin-left: 4px;
}

.hanna-dropdown-panel {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 680px;
  background: var(--blue-panel);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  display: none;
  overflow: hidden;
}

.hanna-dropdown:hover .hanna-dropdown-panel,
.hanna-dropdown:focus-within .hanna-dropdown-panel {
  display: flex;
}

.dd-col-left {
  width: 240px;
  background: var(--blue-panel-soft);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 12px;
}

.dd-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--blue-ink);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 10px;
  border-radius: 10px;
}

.dd-cat:hover,
.dd-cat.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.dd-col-right {
  display: none;
  flex-direction: column;
  min-width: 440px;
  padding: 14px;
}

.dd-col-right.is-active {
  display: flex;
}

.dd-col-right a {
  text-decoration: none;
  color: var(--blue-ink);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
}

.dd-col-right a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.hanna-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.hanna-btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1a1f1c;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  padding: 8px 10px 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.qa-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  display: grid;
  place-items: center;
  font-size: 15px;
}

.hanna-hamburger {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.hanna-bars {
  position: relative;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}

.hanna-bars::before,
.hanna-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}

.hanna-bars::before {
  transform: translateY(-5px);
}

.hanna-bars::after {
  transform: translateY(5px);
}

#hanna-nav-wrap.is-open .hanna-bars {
  background: transparent;
}

#hanna-nav-wrap.is-open .hanna-bars::before {
  transform: translateY(0) rotate(45deg);
}

#hanna-nav-wrap.is-open .hanna-bars::after {
  transform: translateY(0) rotate(-45deg);
}

.hanna-mobile-menu {
  display: none;
}

body {
  padding-top: 100px;
}

@media (max-width: 1024px) {
  #hanna-nav-wrap {
    padding: 10px 12px;
  }

  .hanna-navbar {
    position: relative;
    padding: 0 8px 0 22px;
    height: 64px;
  }

  .hanna-links,
  .hanna-brand-neon {
    display: none;
  }

  .hanna-hamburger {
    display: grid;
  }

  .hanna-mobile-menu {
    pointer-events: all;
    display: none;
    position: absolute;
    top: 78px;
    left: 12px;
    right: 12px;
    background: var(--blue-panel);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    padding: 12px;
  }

  #hanna-nav-wrap.is-open .hanna-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .hanna-mobile-menu a {
    text-decoration: none;
    color: var(--blue-ink);
    font-weight: 700;
    font-size: 15px;
    padding: 11px 12px;
    border-radius: 10px;
  }

  .hanna-mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }

  .hanna-mobile-group {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
  }

  .hanna-mobile-parent {
    width: 100%;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    text-align: left;
    cursor: pointer;
  }

  .hanna-mobile-parent span {
    transition: transform 0.2s ease;
  }

  .hanna-mobile-group.is-open .hanna-mobile-parent span {
    transform: rotate(180deg);
  }

  .hanna-mobile-children {
    display: none;
    padding: 0 8px 10px;
  }

  .hanna-mobile-group.is-open .hanna-mobile-children {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  body {
    padding-top: 84px;
  }
}
