:root {
  --lw-navy: #081b33;
  --lw-navy-2: #102a4d;
  --lw-blue: #1f6feb;
  --lw-blue-2: #4ca5ff;
  --lw-cyan: #27c2d1;
  --lw-green: #3fc59d;
  --lw-ink: #132238;
  --lw-text: #435269;
  --lw-muted: #718096;
  --lw-line: #dbe4ef;
  --lw-soft: #f4f7fb;
  --lw-white: #ffffff;
  --lw-shadow: 0 18px 50px rgba(8, 27, 51, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--lw-text);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif !important;
  background: var(--lw-white);
  letter-spacing: -0.02em;
}

body, input, select, textarea, button {
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif !important;
}

body.menu-visible {
  overflow: hidden;
}

#header.lw-site-header,
#header.alt.lw-site-header {
  position: fixed !important;
  inset: 0 0 auto 0;
  width: 100% !important;
  height: 76px;
  line-height: normal;
  padding: 0;
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(219, 228, 239, 0.9);
  box-shadow: 0 6px 24px rgba(8, 27, 51, 0.06) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: visible;
  z-index: 10001;
}

.lw-nav-inner {
  width: min(1240px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

#header.lw-site-header > .lw-nav-inner > .logo {
  position: static;
  flex: 0 0 auto;
  height: auto;
  line-height: 1;
  padding: 0;
  margin: 0;
}

.lw-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--lw-navy) !important;
  text-decoration: none !important;
}

.lw-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--lw-blue), var(--lw-cyan));
  box-shadow: 0 8px 18px rgba(31, 111, 235, 0.24);
}

.lw-brand-copy {
  display: grid;
  gap: 3px;
}

.lw-brand-name {
  color: var(--lw-navy);
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.lw-brand-tagline {
  color: var(--lw-muted);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lw-desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-left: auto;
}

#header.lw-site-header .lw-desktop-nav > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px !important;
  color: #34445a !important;
  border: 0 !important;
  border-radius: 12px;
  font-size: 14px !important;
  line-height: 1;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

#header.lw-site-header .lw-desktop-nav > a:hover,
#header.lw-site-header .lw-desktop-nav > a:focus-visible {
  color: var(--lw-blue) !important;
  background: #edf5ff;
  margin: 0 !important;
  border: 0 !important;
  transform: translateY(-1px);
}


#header.lw-site-header .lw-desktop-nav > a.lw-nav-kakao {
  color: #6d5f00 !important;
  background: #fff9c9;
}

#header.lw-site-header .lw-desktop-nav > a.lw-nav-kakao:hover,
#header.lw-site-header .lw-desktop-nav > a.lw-nav-kakao:focus-visible {
  color: #4d4300 !important;
  background: #fee500;
}

#header.lw-site-header .lw-desktop-nav > a.lw-nav-cta {
  margin-left: 8px !important;
  padding: 0 18px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--lw-blue), #1455bd);
  box-shadow: 0 8px 20px rgba(31, 111, 235, 0.2);
}

#header.lw-site-header .lw-desktop-nav > a.lw-nav-cta:hover,
#header.lw-site-header .lw-desktop-nav > a.lw-nav-cta:focus-visible {
  color: #fff !important;
  background: linear-gradient(135deg, #2a78ef, #0d4cae);
}

#header.lw-site-header > .lw-nav-inner > a[href="#menu"] {
  margin-left: auto;
  padding: 10px 12px !important;
  color: var(--lw-navy) !important;
  border: 1px solid var(--lw-line);
  border-radius: 12px;
  line-height: 1;
  font-size: 0 !important;
  text-decoration: none;
}

#header.lw-site-header > .lw-nav-inner > a[href="#menu"]:before {
  margin: 0;
  font-size: 20px;
}

#menu {
  width: min(360px, 86vw);
  max-width: none;
  padding: 88px 28px 32px;
  background: rgba(255,255,255,.98);
  box-shadow: -20px 0 60px rgba(8,27,51,.16);
}

#menu > ul.links > li > a:not(.button) {
  min-height: 54px;
  display: flex;
  align-items: center;
  color: var(--lw-ink) !important;
  border-top: 1px solid var(--lw-line);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}

#menu > ul.links > li > a:not(.button):hover {
  color: var(--lw-blue) !important;
  border-bottom: 0;
  margin-top: 0;
}

#menu .close {
  top: 16px;
  right: 14px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  padding: 0;
  text-align: center;
  border-radius: 12px;
  background: var(--lw-soft);
}

.lw-footer {
  padding: 0 !important;
  color: rgba(255,255,255,.74);
  background: #07172b !important;
  text-align: left !important;
}

.lw-footer-top {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 42px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 56px;
}

.lw-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
}

.lw-footer-brand .lw-brand-mark {
  width: 40px;
  height: 40px;
}

.lw-footer-copy {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.8;
}

.lw-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lw-footer-list,
.lw-footer-list li {
  margin: 0;
  padding: 0 !important;
  list-style: none;
}

.lw-footer-list li {
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.85;
}

.lw-footer-list a {
  color: rgba(255,255,255,.78) !important;
  text-decoration: none;
}

.lw-footer-list a:hover {
  color: #fff !important;
}

.lw-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
}

.lw-footer-bottom-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
}


.lw-footer-delay {
  display: block;
  color: rgba(255,255,255,.44);
  font-size: 11px;
  line-height: 1.5;
}

.lw-contact-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 9px;
}

.lw-contact-float a {
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease;
}

.lw-contact-float a:hover,
.lw-contact-float a:focus-visible {
  transform: translateY(-4px);
}

.lw-mail-float {
  min-height: 60px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 18px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--lw-blue), #1455bd);
  box-shadow: 0 14px 32px rgba(8,27,51,.24);
}

.lw-mail-float > i {
  font-size: 18px;
}

.lw-mail-float small,
.lw-mail-float strong {
  display: block;
  color: #fff;
}

.lw-mail-float small {
  margin-bottom: 2px;
  opacity: .68;
  font-size: 9px;
  line-height: 1;
}

.lw-mail-float strong {
  font-size: 14px;
  line-height: 1.1;
}

.lw-kakao-float {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #fee500;
  box-shadow: 0 12px 26px rgba(8,27,51,.2);
}

.lw-kakao-float img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@media (max-width: 1120px) {
  #header.lw-site-header,
  #header.alt.lw-site-header {
    height: 68px;
  }

  .lw-nav-inner {
    width: min(100% - 32px, 1240px);
  }

  .lw-desktop-nav {
    display: none;
  }

  #header.lw-site-header .mob_nav {
    display: block !important;
  }

  .lw-footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .lw-footer-top > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .lw-brand-tagline {
    display: none;
  }

  .lw-brand-name {
    font-size: 18px;
  }

  .lw-footer-top,
  .lw-footer-bottom-inner {
    width: min(100% - 32px, 1200px);
  }

  .lw-footer-top {
    padding: 44px 0 32px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lw-footer-top > :first-child {
    grid-column: auto;
  }

  .lw-footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .lw-contact-float {
    right: 14px;
    bottom: 14px;
    gap: 7px;
  }

  .lw-mail-float {
    min-height: 52px;
    padding: 0 14px;
    border-radius: 15px;
  }

  .lw-kakao-float {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }
}
