:root {
  --brand: #102c77;
  --brand-dark: #091c52;
  --ink: #27272c;
  --muted: #5e5e5e;
  --soft: #f7f7f7;
  --line: #d7d7d7;
  --footer: #f1f1f1;
  --max: 1680px;
  --width: 94%;
  --header: 100px;
  --radius: 20px;
  --section: clamp(120px, 10.4vw, 200px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "SUIT", "Noto Sans KR", sans-serif;
  line-height: 1.6;
  word-break: normal;
  overflow-wrap: break-word;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: var(--width);
  max-width: var(--max);
  margin-inline: auto;
}
.product-go {
  display: inline-grid;
  flex: none;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  overflow: hidden;
  font-style: normal;
  transition:
    background-color 0.25s,
    transform 0.25s ease;
}
.product-go img {
  width: 18px;
  height: 18px;
  max-width: none;
}
a:hover .product-go,
a:focus-visible .product-go {
  transform: rotate(45deg);
}
@media (hover: none) {
  a:hover .product-go {
    transform: none;
  }
}
.section {
  padding: var(--section) 0;
}
.eyebrow {
  margin: 0;
  color: var(--brand);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.display-title {
  margin: 24px 0 0;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.055em;
}
.body-copy {
  font-size: clamp(16px, 1.05vw, 20px);
  color: var(--muted);
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.include-error {
  margin: 0;
  padding: 24px;
  text-align: center;
  background: #fff3cd;
  color: #624b00;
}
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header);
  color: #fff;
  border-bottom: 1px solid rgb(255 255 255/0.25);
  transition:
    background 0.3s,
    color 0.3s,
    box-shadow 0.3s;
}
.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 10px 35px rgb(0 0 0/0.06);
}
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.brand {
  width: 72px;
}
.brand img {
  width: 72px;
  height: 68px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(42%) saturate(3300%) hue-rotate(207deg) brightness(82%)
    contrast(105%);
}
.main-nav {
  display: flex;
  height: 100%;
  align-items: center;
}
.main-nav > a {
  height: 100%;
  padding: 0 25px;
  display: grid;
  place-items: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}
.main-nav > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25px;
  right: 100%;
  height: 2px;
  background: var(--brand);
  transition: right 0.25s;
}
.main-nav > a:hover {
  color: var(--brand);
}
.main-nav > a:hover:after {
  right: 25px;
}
.header-tools {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
}
.header-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.header-action img {
  width: 20px;
  height: 20px;
  flex: none;
  object-fit: contain;
}
.header-logged-tools {
  display: none;
  align-items: center;
  gap: 16px;
}
.header-mypage {
  display: none;
}
.site-header.is-logged .header-login {
  display: none;
}
.site-header.is-logged .header-logged-tools {
  display: flex;
}
.site-header.is-logged .header-mypage {
  display: inline-flex;
}
.header-consult img {
  width: 22px;
  height: 22px;
}
.header-consult:after {
  display: none;
}
.menu-button {
  width: 46px;
  height: 46px;
  border: 0;
  background: none;
  display: grid;
  grid-template-columns: repeat(3, 5px);
  grid-auto-rows: 5px;
  gap: 6px;
  place-content: center;
  cursor: pointer;
}
.menu-button span {
  background: currentColor;
}
.mega-menu {
  position: fixed;
  top: var(--header);
  left: 0;
  right: 0;
  height: 0;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  transition: height 0.35s;
}
.site-header.is-open .mega-menu {
  height: 390px;
  border-top: 1px solid var(--line);
}
.mega-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 3fr;
}
.mega-intro {
  padding: 52px 4vw 30px 0;
  background: var(--soft);
  position: relative;
}
.mega-intro:before {
  content: "";
  position: absolute;
  right: 100%;
  inset-block: 0;
  width: 100vw;
  background: var(--soft);
}
.mega-intro strong {
  font-size: 36px;
  font-weight: 500;
}
.mega-intro p {
  max-width: 340px;
  color: var(--muted);
}
.mega-grid {
  padding: 48px 0 40px clamp(40px, 5vw, 80px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.mega-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mega-group a {
  font-size: 14px;
  color: var(--muted);
}
.mega-group a:hover {
  color: var(--brand);
}
.mega-group .mega-title {
  padding-bottom: 16px;
  margin-bottom: 5px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
}
.sub-hero {
  height: 680px;
  padding-top: var(--header);
  color: #fff;
  background:
    linear-gradient(rgb(9 28 82/0.58), rgb(9 28 82/0.66)),
    var(--sub-image) center/cover;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.sub-hero-content {
  max-width: 1200px;
}
.sub-hero .eyebrow {
  color: #d9e3ff;
}
.sub-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(56px, 5vw, 88px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
.sub-hero-content > p:last-child {
  margin: 24px auto 0;
  max-width: 720px;
  font-size: 20px;
  line-height: 1.6;
}
.local-nav {
  height: 116px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  background: #fff;
}
.local-nav-scroll {
  display: flex;
  gap: 12px;
  margin: auto;
  padding: 0 5%;
  overflow: auto;
}
.local-nav a {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 28px;
  background: var(--soft);
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.local-nav a.is-active {
  color: #fff;
  background: var(--brand);
}
.next-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff;
  background: var(--brand);
}
.next-actions a {
  min-height: 390px;
  padding: 80px max(6vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-right: 1px solid rgb(255 255 255/0.3);
}
.next-actions a:last-child {
  border-right: 0;
}
.next-actions span,
.footer-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.next-actions strong {
  margin-top: 22px;
  font-size: clamp(32px, 2.5vw, 46px);
  font-weight: 500;
  line-height: 1.3;
}
.next-actions i {
  position: absolute;
  right: max(6vw, 40px);
  bottom: 82px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  display: grid;
  place-items: center;
  font-style: normal;
  transition: transform 0.25s;
}
.site-footer {
  padding: 72px 0 34px;
  background: var(--footer);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 435.81fr) minmax(0, 305.06fr) minmax(0, 631.94fr);
  column-gap: 9.142857%;
  align-items: start;
}
.footer-brand strong {
  display: block;
  color: var(--brand);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.3;
}
.footer-brand strong span,
.footer-brand p span,
.footer-customer p span {
  display: block;
}
.footer-brand p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
}
.site-footer .footer-label {
  display: block;
  margin-bottom: 20px;
  color: var(--brand);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.footer-phone {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}
.footer-customer p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.business-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}
.business-info p {
  display: flex;
  gap: 10px;
  margin: 0;
  white-space: normal;
}
.business-info b {
  flex: none;
  color: var(--ink);
  font-weight: 600;
}
.footer-bottom {
  margin-top: 54px;
  padding-top: 29px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #777;
  font: 400 14px/1.4 "Inter", sans-serif;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom div {
  display: flex;
  gap: 24px;
}
@media (max-width: 1100px) {
  :root {
    --header: 82px;
  }
  .main-nav {
    display: none;
  }
  .header-inner {
    grid-template-columns: 1fr 1fr;
  }
  .site-header {
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
  }
  .brand img {
    filter: brightness(0) saturate(100%) invert(16%) sepia(42%) saturate(3300%) hue-rotate(207deg) brightness(82%)
      contrast(105%);
  }
  .header-consult {
    display: none;
  }
  .mega-menu {
    top: var(--header);
  }
  .site-header.is-open .mega-menu {
    height: calc(100dvh - var(--header));
  }
  .mega-inner {
    display: block;
    width: 100%;
  }
  .mega-intro {
    display: none;
  }
  .mega-grid {
    display: block;
    height: 100%;
    padding: 8px calc((100% - var(--width)) / 2) 32px;
    overflow-y: auto;
  }
  .mega-group {
    display: block;
    border-bottom: 1px solid var(--line);
  }
  .mega-group .mega-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 15px 4px;
    border: 0;
    font-size: 16px;
    line-height: 1.3;
  }
  .mega-group .mega-title:after {
    content: "+";
    color: var(--brand);
    font-size: 18px;
    line-height: 1;
  }
  .mega-group.is-open .mega-title:after {
    content: "−";
  }
  .mega-group-single .mega-title:after {
    display: none;
  }
  .mega-group > a:not(.mega-title) {
    display: block;
    max-height: 0;
    padding: 0 4px 0 18px;
    overflow: hidden;
    opacity: 0;
    transition: 0.25s;
  }
  .mega-group.is-open > a:not(.mega-title) {
    max-height: 40px;
    padding-block: 7px;
    opacity: 1;
  }
  .sub-hero {
    height: 560px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
    row-gap: 48px;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 767px) {
  :root {
    --header: 76px;
    --width: 90%;
    --section: clamp(96px, 26vw, 120px);
  }
  .brand,
  .brand img {
    width: 58px;
  }
  .header-tools {
    gap: 4px;
  }
  .header-logged-tools {
    gap: 0;
  }
  .header-login,
  .header-logged-tools .header-action {
    min-height: 34px;
  }
  .header-logged-tools .header-action {
    width: 34px;
    justify-content: center;
  }
  .header-login {
    margin-right: 6px;
  }
  .sub-hero {
    height: 500px;
  }
  .sub-hero h1 {
    font-size: 22px;
  }
  .sub-hero-content > p:last-child {
    font-size: 13px;
  }
  .local-nav {
    height: 92px;
    justify-content: flex-start;
  }
  .local-nav-scroll {
    margin: 0;
    width: 100%;
  }
  .local-nav a {
    min-height: 48px;
    padding: 0 20px;
  }
  .next-actions {
    grid-template-columns: 1fr;
  }
  .next-actions a {
    min-height: 310px;
    padding: 60px 5vw;
  }
  .next-actions a:first-child {
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255/0.3);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .site-footer {
    padding: 60px 0 28px;
  }
  .footer-brand p {
    font-size: 16px;
  }
  .business-info {
    display: grid;
    gap: 9px;
  }
  .business-info p {
    white-space: normal;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom div {
    margin-top: 16px;
    flex-wrap: wrap;
  }
  .footer-brand strong {
    font-size: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.quick-menu {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  pointer-events: none;
}
.quick-menu .quick-message,
.quick-menu .quick-buttons,
.quick-menu .quick-button,
.quick-menu .quick-close,
.quick-menu .quick-bot-video-wrapper,
.quick-menu #chatbot-exe {
  pointer-events: auto;
}
.quick-message {
  position: relative;
  padding: 14px 38px 14px 18px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 25px rgb(0 0 0/0.08);
  cursor: pointer;
}
.quick-message strong {
  display: block;
  font-size: 15px;
}
.quick-message p {
  margin: 4px 0 0;
  color: #666;
  font-size: 13px;
}
.quick-close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #f5f5f5;
  cursor: pointer;
}
.quick-buttons {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quick-button {
  width: 60px;
  height: 60px;
  border: 1px solid #ddd;
  border-radius: 16px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgb(0 0 0/0.1);
  font-size: 22px;
  overflow: hidden;
}
.quick-button img {
  display: block;
  width: 28px;
  height: 28px;
  max-width: none;
  object-fit: contain;
}
.quick-button.chatbot img,
.quick-bot-video-wrapper .quick-bot-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quick-bot-video-wrapper {
  cursor: pointer;
  background: #fff url("/front/images/comm/chatbot.png") center/cover no-repeat;
}
#chatbot-exe,
.quick-bot-video-wrapper {
  display: grid;
}
.quick-button.top {
  color: #fff;
  background: #041a53;
  border-color: #041a53;
}
.quick-button.top img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}
@media (max-width: 767px) {
  .quick-message {
    display: none;
  }
  .quick-menu {
    right: 14px;
    bottom: 14px;
  }
  #chatbot-exe,
  .quick-bot-video-wrapper,
  .quick-button.chatbot {
    display: grid;
  }
}
.next-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 160px max(3vw, calc((100vw - 1680px) / 2));
  color: #fff;
  background: var(--brand);
}
.next-actions a {
  min-height: 350px;
  padding: 54px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  border-top: 1px solid rgb(255 255 255/0.28);
  border-bottom: 1px solid rgb(255 255 255/0.28);
  border-right: 1px solid rgb(255 255 255/0.28);
}
.next-actions-cta {
  position: absolute;
  left: 56px;
  bottom: 54px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.next-actions em {
  color: rgb(255 255 255/0.8);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
.next-actions > a > span {
  font-family: "Noto Sans KR", "SUIT", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}
.next-actions a:nth-child(2) { padding-left: 70px; }
.next-actions a:nth-child(2) .next-actions-cta { left: 70px; }
.next-actions span {
  color: rgb(255 255 255/0.8);
}
.next-actions strong {
  margin-top: 24px;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.3;
}
.next-actions i {
  position: static;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  display: grid;
  place-items: center;
  font-style: normal;
}
.next-actions i img {
  width: 18px;
  height: 18px;
  max-width: none;
}
@media (max-width: 767px) {
  .next-actions {
    grid-template-columns: 1fr;
    padding: 96px 5vw;
  }
  .next-actions a {
    min-height: 280px;
    padding: 44px 0;
  }
  .next-actions a:nth-child(2) {
    padding-left: 0;
  }
  .next-actions a:first-child {
    border-right: 0;
  }
  .next-actions strong {
    font-size: 34px;
  }
  .next-actions-cta,
  .next-actions a:nth-child(2) .next-actions-cta {
    left: 0;
    bottom: 44px;
    gap: 8px;
  }
  .next-actions em,
  .next-actions a:nth-child(2) em {
    left: 0;
    bottom: auto;
  }
  .next-actions i {
    width: 28px;
    height: 28px;
  }
  .next-actions i img {
    width: 14px;
    height: 14px;
  }
}

.site-header.is-scrolled .header-action img,
.site-header.is-open .header-action img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(42%) saturate(3300%) hue-rotate(207deg) brightness(82%) contrast(105%);
}
@media (max-width: 1100px) {
  .header-action img {
    filter: brightness(0) saturate(100%) invert(16%) sepia(42%) saturate(3300%) hue-rotate(207deg) brightness(82%) contrast(105%);
  }
}


/* Mobile density baseline */
@media (max-width: 767px) {
  :root {
    --section: 64px;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.06em;
  }
  .display-title {
    margin-top: 12px;
    font-size: 20px;
    line-height: 1.3;
  }
  .text-link,
  .circle-link {
    gap: 8px;
    font-size: 14px;
  }
  .text-link {
    margin-top: 20px;
  }
  .mega-grid {
    padding: 4px calc((100% - var(--width)) / 2) 24px;
  }
  .mega-group .mega-title {
    padding: 13px 2px;
    font-size: 15px;
  }
  .mega-group .mega-title:after {
    font-size: 16px;
  }
  .mega-group > a:not(.mega-title) {
    padding: 0 2px 0 14px;
    font-size: 13px;
  }
  .mega-group.is-open > a:not(.mega-title) {
    max-height: 36px;
    padding-block: 6px;
  }
  .sub-hero {
    height: 380px;
  }
  .sub-hero h1 {
    margin-top: 10px;
    font-size: 22px;
    line-height: 1.25;
  }
  .sub-hero-content > p:last-child {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.55;
  }
  .local-nav {
    height: 68px;
  }
  .local-nav a {
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }
  .next-actions {
    padding: 56px 5vw;
  }
  .next-actions a {
    min-height: 210px;
    padding: 32px 0;
  }
  .next-actions span {
    font-size: 12px;
  }
  .next-actions strong {
    margin-top: 12px;
    font-size: 24px;
  }
  .next-actions em,
  .next-actions a:nth-child(2) em {
    font-size: 13px;
  }
  .next-actions-cta,
  .next-actions a:nth-child(2) .next-actions-cta {
    bottom: 32px;
    gap: 8px;
  }
  .next-actions i {
    width: 28px;
    height: 28px;
  }
  .site-footer {
    padding: 48px 0 24px;
  }
  .footer-grid {
    gap: 28px;
  }
  .footer-brand strong {
    font-size: 22px;
  }
  .footer-brand p,
  .footer-customer p,
  .business-info {
    font-size: 14px;
  }
  .site-footer .footer-label {
    margin-bottom: 12px;
    font-size: 13px;
  }
  .footer-phone {
    font-size: 26px;
  }
  .footer-bottom {
    margin-top: 34px;
    padding-top: 20px;
    font-size: 12px;
  }
  .quick-button {
    width: 52px;
    height: 52px;
  }
}
