header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 81px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 111.5px;
  background: var(--header-bg, #10496A);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  box-sizing: border-box;
}

header .logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

header .logo-link .logo {
  width: 191px;
  height: 44px;
  object-fit: contain;
}

header .nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

header .nav-item {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease;
}

header .nav-item:hover {
  opacity: 0.75;
}

header .dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

header .dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

header .dropdown-arrow {
  display: inline-block;
  width: 10px;
  height: 6px;
  position: relative;
  transition: transform 0.2s ease;
}

header .dropdown-arrow::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #FFFFFF;
  transition: border-top-color 0.3s ease;
}

header .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  min-width: 140px;
  z-index: 200;
}

header .dropdown:hover .dropdown-menu,
header .dropdown:focus-within .dropdown-menu,
header .dropdown-menu.open {
  display: block;
}

header .dropdown:hover .dropdown-arrow,
header .dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

header .dropdown-item {
  display: block;
  padding: 10px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  color: #10496A;
  text-decoration: none;
  transition: background 0.15s ease;
}

header .dropdown-item:hover {
  background: #EEF5F9;
}

header.scrolled {
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header.scrolled .nav-item,
header.scrolled .dropdown-toggle {
  color: #10496A;
}

header.scrolled .dropdown-arrow::before {
  border-top-color: #10496A;
}

header .nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
header .nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
header .nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.12);
}
header .nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header .nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
header .nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

header.scrolled .nav-hamburger span {
  background: #10496A;
}

header.scrolled .nav-hamburger:hover {
  background: rgba(0, 0, 0, 0.05);
}

header .nav-mobile {
  display: none;
  position: absolute;
  top: 81px;
  left: 0;
  width: 100%;
  background: var(--header-bg, #10496A);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  flex-direction: column;
  padding: 12px 0 28px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
header .nav-mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

header .nav-mobile__item {
  display: block;
  padding: 14px 32px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  text-decoration: none;
  transition: background 0.15s ease;
}
header .nav-mobile__item:hover {
  background: rgba(255, 255, 255, 0.1);
}

header .nav-mobile__dropdown {
  display: flex;
  flex-direction: column;
}

header .nav-mobile__dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

header .nav-mobile__arrow {
  display: inline-block;
  width: 10px;
  height: 6px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
header .nav-mobile__arrow::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #FFFFFF;
  transition: border-top-color 0.3s ease;
}

header .nav-mobile__dropdown.open .nav-mobile__arrow {
  transform: rotate(180deg);
}

header .nav-mobile__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

header .nav-mobile__dropdown.open .nav-mobile__submenu {
  max-height: 160px;
}

header .nav-mobile__subitem {
  display: block;
  padding: 12px 32px 12px 48px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: background 0.15s ease;
}
header .nav-mobile__subitem:hover {
  background: rgba(255, 255, 255, 0.08);
}

header.scrolled .nav-mobile {
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

header.scrolled .nav-mobile__item {
  color: #10496A;
}
header.scrolled .nav-mobile__item:hover {
  background: rgba(0, 0, 0, 0.04);
}

header.scrolled .nav-mobile__arrow::before {
  border-top-color: #10496A;
}

header.scrolled .nav-mobile__subitem {
  color: rgba(16, 73, 106, 0.85);
}
header.scrolled .nav-mobile__subitem:hover {
  background: rgba(0, 0, 0, 0.04);
}

@media (max-width: 1024px) {
  header {
    padding: 0 40px;
  }
}
@media (max-width: 960px) {
  header .nav-links {
    display: none;
  }
  header .nav-hamburger {
    display: flex;
  }
  header .nav-mobile {
    display: flex;
  }
}
@media (max-width: 768px) {
  header {
    padding: 0 24px;
  }
  header .logo-link .logo {
    width: 140px;
    height: auto;
  }
}
.site-footer {
  background: #0A0A0A;
  color: #99A1AF;
  font-family: "Inter", sans-serif;
}
.site-footer__inner {
  max-width: 1249px;
  margin: 0 auto;
  padding: 48px 40px 0;
  box-sizing: border-box;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}
.site-footer__brand {
  max-width: 289px;
}
.site-footer__logo {
  display: inline-block;
}
.site-footer__logo img {
  width: 191px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.site-footer__tagline {
  margin: 20px 0 0;
  color: #99A1AF;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  max-width: 289px;
}
.site-footer__social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  font-size: 22px;
}
.site-footer__social a {
  color: #99A1AF;
  display: inline-flex;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__social a:hover {
  color: #FFFFFF;
}
.site-footer__heading {
  margin: 0 0 12px;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.44px;
}
.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__list a {
  color: #99A1AF;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  transition: color 0.2s ease;
}
.site-footer__list a:hover {
  color: #FFFFFF;
}
.site-footer__bottom {
  border-top: 1px solid #1E2939;
  padding: 24px 0;
  text-align: center;
}
.site-footer__bottom p {
  margin: 0;
  color: #99A1AF;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
}

@media (max-width: 768px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .site-footer__brand {
    grid-column: 1/-1;
    max-width: none;
  }
}
@media (max-width: 480px) {
  .site-footer__inner {
    padding: 40px 24px 0;
  }
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/*# sourceMappingURL=base.css.map */
