.header-new {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(4, 63, 109, 0.1);
  padding: 0;
  transition: padding 0.3s ease, transform 0.3s ease;
  width: 100%;
}
@media (max-width: 768px) {
  .header-new.header-shrink {
    transform: translateY(-15%);
  }
  .header-new.header-shrink .header-inner-new {
    padding: 0.5rem 1rem;
  }
  .header-new.header-shrink .header-logo-link img {
    height: 35px;
  }
  .header-new.header-shrink .mobile-menu-toggle {
    transform: scale(0.85);
  }
}

.header-inner-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: padding 0.3s ease;
}
@media (max-width: 1024px) {
  .header-inner-new {
    gap: 1rem;
    padding: 1rem 1.5rem;
  }
}

.header-logo-new {
  flex-shrink: 0;
}

.header-logo-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  text-decoration: none;
}
.header-logo-link img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}
.header-logo-link:hover img {
  transform: scale(1.05);
}

.header-tagline-new {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  color: #909395;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .header-tagline-new {
    display: none;
  }
}

.header-nav-new {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
@media (max-width: 1024px) {
  .header-nav-new {
    display: none;
  }
}

.header-top-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.header-buttons-new {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  width: 100%;
}
@media (max-width: 1200px) {
  .header-menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.header-user-info-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}
.header-user-info-new .user-greeting {
  color: #043F6D;
  font-weight: 500;
}

.header-link-new {
  color: #5D6062 !important;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.header-link-new:hover {
  color: #043F6D !important;
}
.header-link-new i {
  margin-right: 0.25rem;
}

.header-menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem 0.5rem;
  color: #043F6D !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.3;
  transition: all 0.2s ease;
  position: relative;
  border-radius: 8px;
  background: rgba(70, 162, 218, 0.03);
}
.header-menu-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(70, 162, 218, 0.1);
  transition: height 0.3s ease;
  border-radius: 8px;
  z-index: -1;
}
.header-menu-item:hover {
  color: #46A2DA !important;
}
.header-menu-item:hover::after {
  height: 100%;
}

.btn-header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  background: linear-gradient(135deg, #EB4878 0%, rgb(239.5221674877, 113.3778325123, 150.5246305419) 100%);
  color: #F9F9F9 !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(235, 72, 120, 0.25);
  white-space: nowrap;
}
.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(235, 72, 120, 0.35);
}
.btn-header-cta i {
  font-size: 0.9rem;
}

.btn-header-mypage,
.btn-header-login {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  background: #F9F9F9;
  border: 2px solid #043F6D;
  color: #043F6D !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-header-mypage:hover,
.btn-header-login:hover {
  background: #043F6D;
  color: #F9F9F9 !important;
  transform: translateY(-2px);
}
.btn-header-mypage i,
.btn-header-login i {
  font-size: 0.9rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
  z-index: 1002;
}
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #043F6D;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav-new {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #F9F9F9;
  flex-direction: column;
  gap: 0;
  padding-top: 80px;
  overflow-y: auto;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
@media (max-width: 1024px) {
  .mobile-nav-new {
    display: flex;
  }
  .mobile-nav-new.active {
    transform: translateX(0);
  }
}

.mobile-nav-link {
  padding: 1rem 2rem;
  color: #043F6D !important;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(4, 63, 109, 0.05);
  transition: all 0.2s ease;
}
.mobile-nav-link:hover {
  background: rgba(70, 162, 218, 0.05);
  color: #46A2DA !important;
}
.mobile-nav-link:last-child {
  border-bottom: none;
}/*# sourceMappingURL=header.css.map */