/* ==================================================
   MASTER CSS · common_MASTER_stage3.css
   Hero / Footer values preserved
================================================== */

:root{
  --color-primary: #5C8FD6;
  --color-primary-hover: #4A7CC2;
  --color-primary-deep: #2a5fbe;
  --color-primary-hero: #1546a8;
  --color-accent: #F47C2C;
  --color-accent-hover: #E86E1F;
  --color-navy: #0d1e3d;
  --color-footer: #1a1f24;
  --color-kakao: #03c75a;
  --color-naver: #03c75a;
  --color-text: #111111;
  --color-text-main: #111111;
  --color-text-sub: #444444;
  --color-text-muted: #666666;
  --color-text-soft: #555555;
  --color-text-default: #333333;
  --color-text-light: #666666;
  --color-text-strong: #111111;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark: #05070a;
  --color-bg-white: #ffffff;
  --color-bg-page: #ffffff;
  --color-bg-card: #ffffff;
  --color-bg-panel: #ffffff;
  --color-bg-soft: #ffffff;
  --color-bg-beige: #e7d8cb;
  --color-bg-beige-soft: #eae6df;
  --color-bg-footer: #1a1f24;
  --color-line-soft: rgba(13, 30, 61, 0.11);
  --color-border-soft: rgba(17, 17, 17, 0.10);
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 18px;
  --radius-2xl: 20px;
  --radius-3xl: 22px;
  --radius-card: 20px;
  --radius-card-lg: 22px;
  --radius-panel: 24px;
  --radius-hero: 26px;
  --radius-pill: 999px;
  --radius-circle: 50%;
  --radius-round: 50%;
  --shadow-soft: 0 14px 40px rgba(13, 30, 61, 0.11);
  --shadow-card: 0 18px 46px rgba(13, 30, 61, 0.085);
  --shadow-card-light: 0 12px 28px rgba(13, 30, 61, 0.055);
  --shadow-card-soft: 0 10px 24px rgba(13, 30, 61, 0.035);
  --shadow-card-strong: 0 12px 28px rgba(13, 30, 61, 0.13);
  --shadow-blue-strong: 0 18px 36px rgba(42, 95, 190, 0.28);
  --shadow-blue-soft: 0 10px 24px rgba(92, 143, 214, 0.22);
  --shadow-blue-button: 0 14px 28px rgba(42, 95, 190, 0.2);
  --shadow-naver-button: 0 14px 28px rgba(3, 199, 90, 0.22);
  --A-gray: var(--color-text-sub);
  --B-black: var(--color-text-main);
  --C-blue: var(--color-primary-deep);
  --D-orange: var(--color-accent);
  --E-navy: var(--color-navy);
  --navy: var(--color-navy);
  --text: var(--color-text-main);
  --muted: var(--color-text-sub);
  --blue: var(--color-primary-deep);
  --blue-deep: var(--color-primary-deep);
  --blue-hover: var(--color-primary-deep);
  --hero-blue: var(--color-primary-hero);
  --soft: var(--color-bg-soft);
  --line: var(--color-line-soft);
  --footer: var(--color-footer);
  --soft-blue: #eef5fc;
  --soft-blue-2: #f7fafd;
  --soft-green: #6ca78e;
  --green-text: #4f8a73;
  --case-navy-1: #18345f;
  --case-navy-2: #24446f;
  --case-navy-3: #2a4d79;
  --color-white-short: #fff;
  --color-gray-333: #333333;
  --color-gray-555: #555555;
  --color-gray-666: #666666;
  --color-blue: var(--color-primary-deep);
  --color-blue-hero: var(--color-primary-hero);
  --color-blue-deep: #1d5fb7;
  --color-blue-strong: #1f61c7;
  --color-orange: #ff7a00;
  --color-footer-dark: var(--color-footer);
  --bg-white: var(--color-bg-white);
  --bg-panel: var(--color-bg-panel);
  --bg-soft-blue: var(--soft-blue);
  --bg-soft-blue-2: var(--soft-blue-2);
  --bg-beige: var(--color-bg-beige);
  --text-primary: var(--color-text-main);
  --text-secondary: var(--color-text-sub);
  --text-subtle: var(--color-text-muted);
  --button-blue: var(--color-primary-deep);
  --button-blue-text: var(--color-white);
  --button-naver: var(--color-naver);
  --button-white: var(--color-white);
  --ks-text-main: var(--color-text-main);
  --ks-text-sub: var(--color-text-sub);
  --ks-text-muted: var(--color-text-muted);
  --ks-white: var(--color-white);
  --ks-dark: var(--color-footer);
  --ks-navy: var(--color-navy);
  --ks-blue: var(--color-primary);
  --ks-blue-hover: var(--color-primary-hover);
  --ks-orange: var(--color-accent);
  --ks-orange-hover: var(--color-accent-hover);
  --ks-beige: #f3efe7;
  --ks-beige-soft: var(--color-bg-beige-soft);
  --ks-border-soft: var(--color-border-soft);
  --ks-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);
  --ks-shadow-card: 0 18px 36px rgba(0, 0, 0, 0.10);
  --ks-radius-sm: 12px;
  --ks-radius-md: 18px;
  --ks-radius-card: 24px;
  --ks-radius-pill: var(--radius-pill);
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body{
  margin: 0;
  padding-top: 92px;
  font-family: "Pretendard", sans-serif;
  background: var(--color-white);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}

img{
  -webkit-user-drag: none;
  max-width: 100%;
  display: block;
  user-select: none;
}

a{
  text-decoration: none;
  color: inherit;
}

.wrap{
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar-unified{
  background: var(--color-white);
  border-bottom: none;
  box-shadow: none;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100%;
  transform: translate3d(0, 0, 0) !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  z-index: 99999 !important;
  will-change: transform;
}

.header-shell{
  display: flex;
  align-items: center;
  min-height: auto;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.brand{
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
}

.brand img{
  height: 80px;
  width: auto;
  object-fit: contain;
}

.site-nav{
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.site-nav a{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--B-black);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.25px;
  white-space: nowrap;
  width: 100%;
}

.site-nav a.active{
  font-weight: 800;
}

.site-nav a.active::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--page-active-color, var(--blue));
}

.kicker,
.tag,
.case-kicker{
  -webkit-text-fill-color: var(--blue-deep);
  display: inline-block;
  margin: 0 0 14px 0;
  padding: 0;
  color: var(--blue-deep);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 3.2px;
  line-height: 1.25;
  text-transform: uppercase;
  text-shadow: none;
}

.topbar-unified .header-shell,
.topbar-unified > .wrap.header-shell,
.header-shell{
  position: relative !important;
  height: auto;
  padding: 0 4px 0 24px;
  flex-direction: row;
  min-height: 92px;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.topbar-unified .brand{
  margin: 0;
}

.brand img,
.topbar-unified .brand img,
.topbar-unified .brand img[style]{
  width: auto;
  object-fit: contain;
  height: 80px;
  max-height: 80px;
}

.site-nav a,
.topbar-unified .site-nav a{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: auto;
  margin: 0;
  padding: 0;
  color: var(--B-black);
  -webkit-text-fill-color: var(--B-black);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

.topbar-unified .brand img{
  height: 80px;
  width: auto;
  object-fit: contain;
}

.topbar-unified .site-nav a.active{
  font-weight: 800;
}

.topbar-unified .site-nav,
.site-nav{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  grid-template-columns: none;
  gap: 40px;
  padding: 0;
  margin: 0;
  flex: 0 0 auto;
}

.topbar-unified .site-nav a,
.site-nav a{
  flex: 0 0 auto;
  text-align: center;
}

.topbar-unified .site-nav a:nth-child(1),
.site-nav a:nth-child(1){
  width: 56px;
}

.topbar-unified .site-nav a:nth-child(2),
.site-nav a:nth-child(2){
  width: 68px;
}

.topbar-unified .site-nav a:nth-child(3),
.site-nav a:nth-child(3){
  width: 96px;
}

.topbar-unified .site-nav a:nth-child(4),
.site-nav a:nth-child(4){
  width: 56px;
}

.topbar-unified .site-nav a:nth-child(5),
.site-nav a:nth-child(5){
  width: 94px;
}

.topbar-unified .site-nav a:nth-child(6),
.site-nav a:nth-child(6){
  width: 86px;
}

.site-nav a,
.topbar-unified .site-nav a,
.site-nav a::after,
.topbar-unified .site-nav a::after{
  transition: none !important;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a:active,
.topbar-unified .site-nav a:hover,
.topbar-unified .site-nav a:focus,
.topbar-unified .site-nav a:active{
  transform: none !important;
  opacity: 1 !important;
  box-shadow: none;
  background: transparent;
}

.site-nav a.active::after,
.topbar-unified .site-nav a.active::after{
  transition: none;
}

.floating-contact{
  position: fixed !important;
  right: 24px !important;
  bottom: 40px !important;
  z-index: 9998 !important;
  display: flex !important;
  flex-direction: column;
  gap: 10px;
}

.floating-contact a{
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.floating-contact img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-contact a[href*="blog.naver.com"]{
  display: none;
}

/* ==================================================
   ANIMATIONS
================================================== */

@keyframes heroBgEntranceFinalSoft{
  from {
    opacity: 0;
    transform: translateX(15px) scale(1.02);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes heroKickerEntranceFinalSoft{
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCopyEntranceFinalSoft{
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpKsplFinal{
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.image-card{
  overflow: hidden;
  border-radius: var(--radius-panel);
}

.image-card img{
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.cta-white-section{
  background: var(--soft);
  padding: 94px 0 0;
}

.cta-white-card{
  background: var(--color-white);
  border: 1px solid rgba(13, 30, 61, 0.06);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(13, 30, 61, 0.1);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
  padding: 58px 62px;
}

.cta-white-left h2{
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -1.2px;
}

.cta-white-left p{
  margin: 0 0 30px;
  color: var(--A-gray);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
}

.cta-white-info{
  background: #ffffff;
  border: 1px solid rgba(13, 30, 61, 0.1);
  border-radius: var(--radius-card-lg);
  padding: 34px;
}

.cta-white-info h3{
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
}

.cta-info-item{
  padding: 14px 0;
}

.cta-info-item + .cta-info-item{
  border-top: 1px solid rgba(13, 30, 61, 0.08);
}

.cta-info-item strong{
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.cta-info-item span{
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.cta-white-section .btn.primary:hover{
  -webkit-text-fill-color: var(--color-white);
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue-strong);
  filter: brightness(1.04);
}

.cta-white-section .btn.primary{
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.kicker,
.tag,
.case-kicker,
.section-kicker,
.hero .kicker,
.cta-white-kicker,
.tech-mini-link a{
  -webkit-text-fill-color: var(--C-blue);
  color: var(--C-blue);
}

.hero .kicker{
  -webkit-text-fill-color: var(--blue);
  margin-bottom: 18px;
  padding-bottom: 10px;
  color: var(--blue);
  border-bottom: 1px solid rgba(92, 143, 214, 0.42);
}

.btn-row{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.btn,
.kakao-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 50px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1px;
  text-decoration: none;
  box-shadow: none;
  text-shadow: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}

.btn.primary{
  -webkit-text-fill-color: var(--color-white);
  background: var(--blue);
  color: var(--color-white);
  border: 1px solid var(--blue);
}

.btn.line,
.kakao-btn{
  -webkit-text-fill-color: var(--navy);
  background: var(--color-white);
  color: var(--navy);
  border: 1px solid rgba(13, 30, 61, 0.25);
}

.btn.line:hover,
.kakao-btn:hover{
  -webkit-text-fill-color: var(--color-white);
  background: var(--blue);
  color: var(--color-white);
  border-color: var(--blue);
}

.cta-white-left .btn-row{
  margin-top: 0;
}

.section-kicker{
  display: inline-block;
  margin-bottom: 20px;
  color: var(--C-blue);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 2.8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.section{
  padding: 100px 0;
  background: var(--color-white);
}

.section-beige{
  background: var(--soft);
}

.section-head{
  max-width: 820px;
  margin-bottom: 48px;
}

.kspl-card-showcase .section-head{
  margin-top: 14px;
  margin-bottom: 38px;
}

.section-head h2,
h2{
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -1.2px;
}

.section-head p{
  -webkit-font-smoothing: antialiased;
  max-width: 760px;
  margin: 12px 0 0;
  color: #222222;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
  opacity: 1;
}

.cards4{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.adv-item{
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
  border-radius: var(--radius-card);
  background: var(--color-white);
  border: 1px solid rgba(13, 30, 61, 0.08);
  box-shadow: var(--shadow);
}

.adv-title{
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 19.5px;
  font-weight: 800;
  line-height: 1.45;
}

.adv-desc{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.product-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.card,
.product-card,
.image-card{
  background: var(--color-white);
  border: 1px solid rgba(13, 30, 61, 0.13);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.product-card{
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card img{
  width: 100%;
  height: 340px;
  object-fit: contain;
  background: #ffffff;
  padding: 18px;
}

.product-body{
  flex: 1;
  padding: 22px 22px 22px;
}

.product-body h3{
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.3px;
  text-align: center;
  white-space: nowrap;
}

.product-body p{
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  font-weight: 500;
}

.case-preview-modern,
.case-preview{
  padding: 56px 0 60px;
  background: var(--color-white);
}

.case-preview-box{
  display: grid;
  grid-template-columns: 240px minmax(0,1fr);
  align-items: center;
  gap: 28px;
  padding: 30px 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-white) 0%, #ffffff 100%);
  border: 1px solid rgba(13, 30, 61, 0.1);
  box-shadow: var(--shadow-card);
}

.case-preview .case-kicker{
  -webkit-text-fill-color: var(--blue);
  color: var(--blue);
  margin-bottom: 18px;
}

.case-text h2{
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.industry-badges{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 20px;
  margin-top: 38px;
  max-width: 980px;
}

.badge{
  -webkit-text-fill-color: var(--color-text-strong);
  -webkit-font-smoothing: antialiased;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 24px;
  border-radius: 18px;
  background: var(--color-white);
  border: 1px solid rgba(13, 30, 61, 0.08);
  color: var(--color-text-strong);
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
  opacity: 1;
  text-shadow: none;
  box-shadow: 0 10px 24px rgba(13, 30, 61, 0.04);
}

.badge::before{
  content: "";
  width: 5px;
  height: 5px;
  border-radius: var(--radius-round);
  background: var(--C-blue);
  opacity: 0.72;
  flex: 0 0 auto;
}

.badge:hover{
  transition: none;
  background: var(--color-white);
  color: var(--navy);
}

.adv-metric-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.adv-metric-card{
  min-height: 176px;
  padding: 30px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  text-align: left;
  background: linear-gradient(180deg, var(--color-white) 0%, #ffffff 100%);
  border: 1px solid rgba(13, 30, 61, 0.09);
  border-radius: var(--radius-card-lg);
  box-shadow: 0 18px 44px rgba(13, 30, 61, 0.07);
}

.adv-metric-card:nth-child(1),
.adv-metric-card:nth-child(4){
  grid-column: span 2;
}

.adv-metric-card:nth-child(1){
  background: linear-gradient(135deg, var(--color-white) 0%, #ffffff 100%);
}

.adv-metric-card:nth-child(4){
  background: linear-gradient(135deg, var(--color-white) 0%, #ffffff 100%);
}

.adv-metric-top{
  min-height: 62px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}

.adv-metric-card::before{
  display: none;
  content: none;
}

.adv-metric-icon{
  position: absolute;
  top: 30px;
  right: 28px;
  width: 42px;
  height: 42px;
  color: var(--E-navy);
  opacity: 0.58;
}

.adv-metric-icon svg{
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.adv-metric-number{
  -webkit-text-fill-color: var(--blue);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: var(--blue);
  line-height: 1;
}

.adv-metric-number span{
  display: block;
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -2.2px;
}

.adv-metric-number em{
  -webkit-text-fill-color: var(--blue);
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.2px;
}

.adv-metric-word{
  -webkit-text-fill-color: var(--blue);
  display: block;
  padding-top: 14px;
  color: var(--blue);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.9px;
}

.adv-metric-line{
  display: block;
  width: 100%;
  height: 1px;
  margin: 12px 0 17px;
  background: linear-gradient(90deg, rgba(92, 143, 214, 0.3), rgba(13, 30, 61, 0.08), rgba(13, 30, 61, 0));
}

.adv-metric-card .adv-title{
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 19.5px;
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: -0.35px;
}

.adv-metric-card .adv-desc{
  margin: 0;
  color: var(--A-gray);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.tech-mini-section{
  padding-top: 62px;
  padding-bottom: 62px;
}

.tech-mini-section .wrap{
  max-width: 960px;
}

.tech-mini-head{
  margin-bottom: 26px;
}

.tech-mini-head h2{
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -1.2px;
  color: var(--navy);
  margin-bottom: 12px;
}

.tech-mini-head p{
  font-size: 16.5px;
  line-height: 1.7;
}

.tech-mini-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tech-mini-card{
  display: block;
  overflow: hidden;
  min-height: 0;
  border-radius: 18px;
  background: var(--color-white);
  border: 1px solid rgba(13, 30, 61, 0.13);
  box-shadow: 0 10px 24px rgba(13, 30, 61, 0.055);
  transition: none;
}

.tech-mini-card img{
  width: 100%;
  height: 148px;
  object-fit: cover;
  display: block;
}

.tech-mini-body{
  padding: 20px 20px 24px;
}

.tech-mini-body h3{
  margin: 0 0 6px;
  color: var(--B-black);
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: -0.35px;
}

.tech-mini-body p{
  margin: 0;
  color: var(--A-gray);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.58;
}

.tech-mini-link{
  margin-top: 22px;
  text-align: center;
}

.tech-mini-link a{
  -webkit-text-fill-color: var(--blue);
  display: inline-block;
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  border-bottom: 1px solid rgba(92, 143, 214, 0.4);
}

.cta-white-kicker{
  -webkit-text-fill-color: var(--blue-deep);
  color: var(--blue-deep);
  border-bottom: 2px solid var(--C-blue);
  padding-bottom: 8px;
  margin-bottom: 24px;
}

.kspl-brand-statement-section{
  background: var(--soft);
  padding: 72px 0 74px;
  overflow: hidden;
}

.kspl-brand-statement{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.kspl-brand-statement-kicker-row{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: 100%;
  margin: 0 auto 34px;
}

.kspl-brand-statement-kicker-row::before,
.kspl-brand-statement-kicker-row::after{
  content: "";
  display: block;
  height: 2px;
  background: rgba(92, 143, 214, 0.52);
}

.kspl-brand-statement-kicker{
  -webkit-text-fill-color: var(--C-blue);
  display: block;
  margin: 0;
  color: var(--C-blue);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.2px;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: none;
}

.kspl-brand-statement p{
  -webkit-text-fill-color: var(--A-gray);
  margin: 28px auto 0;
  max-width: 520px;
  color: var(--A-gray);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -0.45px;
}

.kspl-brand-statement-bottom-line{
  display: block;
  width: 100%;
  height: 2px;
  margin: 34px auto 0;
  background: rgba(92, 143, 214, 0.28);
}

.kspl-hero-carousel{
  position: relative;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.kspl-carousel-viewport{
  overflow: hidden;
  border-radius: var(--radius-panel);
  background: var(--color-white);
  border: 1px solid rgba(13, 30, 61, 0.1);
  box-shadow: 0 24px 64px rgba(13, 30, 61, 0.11);
}

.kspl-carousel-track{
  display: flex;
  width: 100%;
  transition: transform 0.48s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.kspl-carousel-slide{
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  min-height: 430px;
  padding: 46px 72px 46px 58px;
  gap: 56px;
}

.kspl-carousel-image{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 310px;
}

.kspl-carousel-image img{
  width: auto;
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  filter: none;
  cursor: zoom-in;
}

.kspl-carousel-content{
  text-align: left;
}

.kspl-carousel-kicker{
  -webkit-text-fill-color: var(--C-blue);
  display: block;
  margin: 0 0 12px;
  color: var(--C-blue);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.2;
}

.kspl-carousel-content h3{
  margin: 0 0 10px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -1.2px;
}

.kspl-carousel-content p{
  margin: 0 0 22px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.4px;
}

.kspl-carousel-content ul{
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 7px;
}

.kspl-carousel-content li{
  position: relative;
  margin: 0;
  padding-left: 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.2px;
}

.kspl-carousel-content li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--C-blue);
  font-weight: 800;
}

.kspl-carousel-btn{
  -webkit-text-fill-color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 180px;
  height: 50px;
  padding: 0 22px;
  border-radius: 6px;
  background: var(--C-blue);
  color: var(--color-white);
  border: 1px solid var(--C-blue);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(92, 143, 214, 0.2);
}

.kspl-carousel-btn span{
  -webkit-text-fill-color: var(--color-white);
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  transform: translateY(-1px);
}

.kspl-carousel-arrow{
  -webkit-text-fill-color: var(--navy);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-round);
  border: 1px solid rgba(13, 30, 61, 0.12);
  background: var(--color-white);
  color: var(--navy);
  box-shadow: var(--shadow-card-strong);
  cursor: pointer;
  font-size: 31px;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  font-family: Arial, sans-serif;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.kspl-carousel-prev{
  left: -23px;
}

.kspl-carousel-next{
  right: -23px;
}

.kspl-carousel-arrow:hover{
  -webkit-text-fill-color: var(--color-white);
  background: var(--C-blue);
  color: var(--color-white);
  border-color: var(--C-blue);
}

.kspl-carousel-dots{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 46px;
  transform: translateY(18px);
}

.kspl-carousel-dots button{
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-round);
  background: var(--color-white);
  opacity: 1;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.kspl-carousel-dots button.is-active{
  width: 22px;
  border-radius: var(--radius-pill);
  background: var(--color-white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.16);
}

.product-lineup-flat{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  overflow: visible;
}

.product-lineup-flat .product-card{
  width: 100%;
  max-width: none;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 30, 61, 0.13);
  transform: none;
}

.product-lineup-flat .product-card img{
  height: 340px;
  padding: 18px;
  object-fit: contain;
  background: #ffffff;
}

.product-lineup-flat .product-body{
  padding: 24px 22px 26px;
}

.product-lineup-flat .product-body h3{
  text-align: center;
  white-space: nowrap;
  font-size: 21px;
  line-height: 1.35;
}

.product-lineup-flat .product-body p{
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
}

.kspl-hero-carousel-section{
  overflow: hidden;
  position: relative;
  background: url("index(1).webp") center center / cover no-repeat;
}

.kspl-carousel-content h3,
.kspl-carousel-content p,
.kspl-carousel-content li{
  -webkit-text-fill-color: var(--B-black);
  color: var(--B-black);
  text-shadow: none;
}

.case-preview.case-preview-modern{
  overflow: hidden;
}

.case-peek-wrap{
  position: relative;
  width: 100%;
  max-width: none;
  min-width: 0;
}

.case-peek-viewport{
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-panel);
}

.case-peek-track{
  -webkit-overflow-scrolling: touch;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2px 70px 8px 2px;
}

.case-peek-track::-webkit-scrollbar{
  display: none;
}

.case-peek-card{
  position: relative;
  flex: 0 0 70%;
  max-width: 70%;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: var(--radius-card-lg);
  background: var(--color-white);
  border: 1px solid rgba(13, 30, 61, 0.11);
  box-shadow: 0 14px 34px rgba(13, 30, 61, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.case-peek-card:hover{
  transform: none;
  border-color: rgba(13, 30, 61, 0.11);
  box-shadow: 0 16px 42px rgba(13, 30, 61, 0.09);
}

.case-peek-image{
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #ffffff;
}

.case-peek-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-peek-body{
  min-height: 96px;
  padding: 15px 18px 15px;
  background: var(--color-white);
}

.case-peek-label{
  -webkit-text-fill-color: var(--C-blue);
  display: inline-block;
  margin: 0 0 6px;
  color: var(--C-blue);
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1.1px;
}

.case-peek-body h3{
  -webkit-text-fill-color: var(--navy);
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18.5px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.45px;
}

.case-peek-body p{
  -webkit-text-fill-color: var(--A-gray);
  margin: 0 0 10px;
  color: var(--A-gray);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.52;
}

.case-peek-more{
  -webkit-text-fill-color: var(--C-blue);
  display: inline-flex;
  align-items: center;
  color: var(--C-blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.case-peek-arrow{
  -webkit-text-fill-color: var(--navy);
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-round);
  border: 1px solid rgba(13, 30, 61, 0.12);
  background: var(--color-white);
  color: var(--navy);
  box-shadow: var(--shadow-card-strong);
  cursor: pointer;
  font-size: 29px;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  font-family: Arial, sans-serif;
}

.case-peek-prev{
  left: -21px;
}

.case-peek-next{
  right: -21px;
}

.case-peek-arrow:hover{
  -webkit-text-fill-color: var(--color-white);
  background: var(--C-blue);
  color: var(--color-white);
  border-color: var(--C-blue);
}

.case-peek-dots{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.case-peek-dots button{
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(13, 30, 61, 0.18);
  cursor: pointer;
}

.case-peek-dots button.is-active{
  width: 28px;
  background: var(--C-blue);
}

.case-peek-dots button:nth-child(n/**/+9){
  display: none;
}

.kspl-carousel-track,
.case-peek-track,
.product-lineup-flat{
  -webkit-user-select: none;
  cursor: grab;
  user-select: none;
}

.kspl-carousel-track.dragging,
.case-peek-track.dragging,
.product-lineup-flat.dragging{
  cursor: grabbing;
}

.kspl-carousel-track.dragging a,
.case-peek-track.dragging a,
.product-lineup-flat.dragging a{
  pointer-events: auto;
}

.case-peek-card,
.case-peek-card *,
.case-peek-more,
.kspl-carousel-btn{
  pointer-events: auto;
}

.case-peek-track.dragging .case-peek-card,
.case-peek-track.dragging .case-peek-card *{
  pointer-events: auto;
}

.kspl-final-process{
  margin: 96px auto 0;
  padding: 0 24px 110px;
  text-align: center;
  background: transparent;
}

.kspl-final-process h2{
  margin: 0;
  color: var(--E-navy);
  -webkit-text-fill-color: var(--E-navy);
  font-size: 76px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -2.8px;
}

.kspl-final-process p{
  margin: 22px 0 0;
  color: var(--E-navy);
  -webkit-text-fill-color: var(--E-navy);
  font-size: 44px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -1.4px;
}

.hero-message-animate,
.hero-message-animate p,
.hero-message-animate p span,
.hero-message-animate span{
  display: block;
  visibility: visible;
}

.kspl-brand-video-section{
  position: relative !important;
  overflow: hidden !important;
  background: var(--color-footer-dark);
  padding: 92px 0 104px;
  color: var(--color-white);
}

.kspl-brand-video-section .wrap{
  position: relative;
  z-index: 1;
}

.kspl-brand-video-section .section-head{
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
}

.kspl-brand-video-section .section-kicker{
  -webkit-text-fill-color: rgba(255, 255, 255, 0.74);
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 18px;
  letter-spacing: 5px;
  border-bottom: 0;
}

.kspl-brand-video-section h2{
  -webkit-text-fill-color: var(--color-white);
  margin: 0;
  color: var(--color-white);
  font-size: 54px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.kspl-brand-video-card{
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  background: var(--color-black);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.kspl-brand-video-frame{
  position: relative;
  width: 100%;
  aspect-ratio: 16 /9;
  overflow: hidden;
  background: var(--color-black);
}

.kspl-brand-video-frame video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--color-black);
  transform: scale(1.01);
  filter: contrast(1.04) saturate(0.96) brightness(0.88);
}

.kspl-brand-video{
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
}

.hero .kspl-brand-hero-links{
  display: flex !important;
  align-items: center;
  gap: 34px;
  margin-top: 34px;
}

.hero .kspl-brand-hero-links .btn{
  -webkit-text-fill-color: var(--color-text-strong);
  width: auto;
  min-width: 0;
  height: auto;
  min-height: 0;
  padding: 0 0 7px 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.34);
  border-radius: 0;
  background: transparent;
  color: var(--color-text-strong);
  box-shadow: none;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.8px;
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.hero .kspl-brand-hero-links .btn span{
  display: inline-block;
  margin-left: 8px;
  transform: translateY(-1px);
}

.hero .kspl-brand-hero-links .btn:hover{
  -webkit-text-fill-color: var(--C-blue);
  color: var(--C-blue);
  border-color: var(--C-blue);
  transform: translateY(-2px);
  background: transparent;
  box-shadow: none;
}

.cta-white-section .wrap.cta-white-card{
  width: calc(100% - 48px);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.index-philosophy-slider-section{
  padding: 0px 0 48px;
  background: var(--color-white);
}

.index-philosophy-slider{
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--color-white);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  transform: translateZ(0);
  aspect-ratio: 2.2 /1;
  height: auto;
  overflow: hidden;
}

.index-philosophy-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.index-philosophy-slide.is-active{
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.index-philosophy-dots{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.index-philosophy-dots button{
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(13, 30, 61, 0.24);
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.index-philosophy-dots button.is-active{
  width: 26px;
  background: var(--C-blue, var(--color-blue));
}

.kspl-menu-overlay{
  position: fixed !important;
  inset: 0;
  z-index: 10000 !important;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.kspl-menu-drawer{
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10001;
  width: min(420px, 82vw);
  height: 100dvh;
  padding: 34px 34px 38px;
  background: var(--color-white);
  box-shadow: -18px 0 44px rgba(13, 30, 61, 0.18);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow-y: auto;
}

body.kspl-drawer-open .kspl-menu-overlay{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.kspl-drawer-open .kspl-menu-drawer{
  transform: translateX(0);
}

body.kspl-drawer-open{
  overflow: hidden;
}

.kspl-drawer-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(13, 30, 61, 0.08);
}

.kspl-drawer-logo{
  display: inline-flex;
  align-items: center;
}

.kspl-drawer-logo img{
  width: auto;
  height: 64px;
  max-height: 64px;
  object-fit: contain;
}

.kspl-drawer-close{
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
  flex: 0 0 auto;
}

.kspl-drawer-close::before,
.kspl-drawer-close::after{
  content: "";
  position: absolute;
  left: 8px;
  top: 20px;
  width: 27px;
  height: 2.4px;
  border-radius: var(--radius-pill);
}

.kspl-drawer-close::before{
  transform: rotate(45deg);
}

.kspl-drawer-close::after{
  transform: rotate(-45deg);
}

.kspl-drawer-nav{
  display: grid;
  gap: 0;
  padding: 34px 0 28px;
}

.kspl-drawer-nav a{
  -webkit-text-fill-color: var(--color-text-strong);
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 66px;
  color: var(--color-text-strong);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.25px;
  border-bottom: 1px solid rgba(13, 30, 61, 0.055);
}

.kspl-drawer-nav a svg{
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kspl-drawer-nav a.active{
  -webkit-text-fill-color: var(--page-active-color, var(--C-blue, var(--color-blue)));
  color: var(--page-active-color, var(--C-blue, var(--color-blue)));
}

.kspl-drawer-contact{
  margin-top: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(13, 30, 61, 0.1);
  display: grid;
  gap: 18px;
}

.kspl-drawer-contact-item{
  -webkit-text-fill-color: var(--color-text-strong);
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: start;
  gap: 16px;
  color: var(--color-text-strong);
}

.kspl-drawer-contact-item svg{
  width: 23px;
  height: 23px;
  stroke: var(--color-text-strong);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 1px;
}

.kspl-drawer-contact-item strong{
  -webkit-text-fill-color: var(--color-text-strong);
  display: block;
  color: var(--color-text-strong);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.kspl-drawer-contact-item span{
  -webkit-text-fill-color: var(--color-text-light);
  display: block;
  margin-top: 2px;
  color: var(--color-text-light);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.kspl-menu-toggle{
  -webkit-appearance: none;
  -webkit-text-fill-color: transparent;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto;
  left: auto !important;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  margin-left: 18px;
  padding: 0;
  border: 0;
  outline: 0;
  border-radius: 0;
  background: transparent;
  background-color: transparent;
  box-shadow: none;
  color: transparent;
  overflow: visible;
  cursor: pointer;
  pointer-events: auto;
  z-index: 10020;
}

.kspl-menu-toggle span,
.kspl-menu-toggle::before,
.kspl-menu-toggle::after{
  display: block;
  content: "";
  position: absolute;
  left: 8px;
  width: 26px;
  height: 2.5px;
  border-radius: var(--radius-pill);
  background-color: var(--color-text-strong);
  opacity: 1;
  box-shadow: none;
  transition: transform 0.24s ease, opacity 0.18s ease, background-color 0.18s ease;
}

.kspl-menu-toggle::before{
  top: 12px;
}

.kspl-menu-toggle span{
  top: 20px;
}

.kspl-menu-toggle::after{
  top: 28px;
}

body.kspl-drawer-open .kspl-menu-toggle::before{
  transform: translateY(8px) rotate(45deg);
}

body.kspl-drawer-open .kspl-menu-toggle span{
  opacity: 0;
}

body.kspl-drawer-open .kspl-menu-toggle::after{
  transform: translateY(-8px) rotate(-45deg);
}

.kspl-menu-toggle:hover::before,
.kspl-menu-toggle:hover span,
.kspl-menu-toggle:hover::after,
.kspl-menu-toggle:focus-visible::before,
.kspl-menu-toggle:focus-visible span,
.kspl-menu-toggle:focus-visible::after,
.kspl-menu-toggle:active::before,
.kspl-menu-toggle:active span,
.kspl-menu-toggle:active::after,
.kspl-menu-toggle[aria-expanded="true"]::before,
.kspl-menu-toggle[aria-expanded="true"] span,
.kspl-menu-toggle[aria-expanded="true"]::after,
body.kspl-drawer-open .kspl-menu-toggle::before,
body.kspl-drawer-open .kspl-menu-toggle span,
body.kspl-drawer-open .kspl-menu-toggle::after{
  background-color: #1546a8;
}
.kspl-drawer-close::before,
.kspl-drawer-close::after{
  background-color: #1546a8;
}
.ks-footer-modern{
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #1a1f24 !important;
  color: #ffffff;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.08) !important;
}

.ks-footer-modern *{
  box-sizing: border-box;
  text-shadow: none;
}

.ks-footer-modern .wrap{
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.ks-footer-modern-inner{
  min-height: 178px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1.12fr 1.08fr;
  justify-content: space-between;
  align-items: start;
  gap: 42px;
  padding: 50px 0 38px;
}

.ks-footer-brand{
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
  min-width: 0;
}

.ks-footer-modern-logo{
  width: 126px !important;
  max-width: 126px !important;
  height: auto;
  object-fit: contain;
  display: block;
}

.ks-footer-brand-text{
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: -0.25px;
  word-break: keep-all;
  overflow-wrap: normal;
}

.ks-footer-modern-nav{
  display: flex;
  justify-content: flex-start !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding-top: 4px;
  padding-bottom: 20px;
  white-space: nowrap;
  min-width: 0;
}

.ks-footer-modern-nav a{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.15px;
  text-decoration: none;
}

.ks-footer-modern-nav a:hover{
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.ks-footer-modern-nav a + a::before{
  display: none;
}

.ks-footer-contact-wrap{
  min-width: 0;
  padding-top: 2px;
}

.ks-footer-contact{
  display: grid;
  justify-content: start;
  align-items: start;
  gap: 13px;
  max-width: none;
  margin: 0;
}

.ks-footer-contact-item{
  display: grid !important;
  grid-template-columns: 56px minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 12px !important;
  min-width: 0 !important;
  width: 100% !important;
  color: #ffffff;
}

.ks-footer-contact-label{
  display: block !important;
  color: rgba(255, 255, 255, 0.52) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  line-height: 1.45 !important;
  letter-spacing: 0.04em !important;
}

.ks-footer-contact-text{
  display: block !important;
  min-width: 0 !important;
}

.ks-footer-contact-text span{
  display: block !important;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 1.55 !important;
  white-space: normal !important;
  word-break: keep-all !important;
}

.ks-footer-blog-box{
  display: grid !important;
  gap: 13px !important;
  padding: 2px 0 0 26px !important;
  border-left: 1px solid rgba(255, 255, 255, 0.18) !important;
}

.ks-footer-blog-title{
  margin: 0 !important;
  color: #75e18d !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  letter-spacing: -0.2px !important;
}

.ks-footer-blog-text{
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 14px !important;
  font-weight: 550 !important;
  line-height: 1.65 !important;
  word-break: keep-all !important;
}

.ks-footer-blog-btn{
  width: max-content !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  padding: 12px 20px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  border: 2px solid #03c75a !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: 0 10px 22px rgba(3, 199, 90, 0.16) !important;
}

.ks-footer-blog-btn span:first-child{
  width: 20px !important;
  height: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 5px !important;
  background: #03c75a !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 950 !important;
}

.ks-footer-blog-btn .naver-official-icon{
  background: transparent !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.ks-footer-blog-btn .naver-official-icon svg{
  width: 20px !important;
  height: 20px !important;
  display: block !important;
  flex: 0 0 auto !important;
}

.ks-footer-modern-copy{
  max-width: 1320px !important;
  margin: 0 auto;
  padding: 20px 24px 24px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: rgba(255, 255, 255, 0.72) !important;
  text-align: left !important;
  font-size: 14.5px !important;
  font-weight: 500;
  line-height: 1.6;
}

/* ==================================================
   DESKTOP
================================================== */

@media (min-width: 1281px){

.ks-footer-modern-inner{
    padding-top: 32px !important;
  }

  .ks-footer-brand{
    transform: none !important;
  }

  .ks-footer-modern-nav{
    transform: none !important;
  }

  .ks-footer-blog-box{
    transform: none !important;
  }
}

/* ==================================================
   TABLET LANDSCAPE
================================================== */

@media (min-width: 981px) and (max-width: 1280px){

html body{
    padding-top: 92px !important;
  }

  .topbar-unified .header-shell,
    .topbar-unified > .wrap.header-shell,
    .header-shell{
    min-height: 92px !important;
    padding-left: 20px !important;
    padding-right: 8px !important;
    gap: 28px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .brand img,
    .topbar-unified .brand img,
    .topbar-unified .brand img[style]{
    width: auto !important;
    height: 80px !important;
    max-height: 80px !important;
    object-fit: contain !important;
  }

  .site-nav,
    .topbar-unified .site-nav{
    display: flex !important;
    width: auto !important;
    grid-template-columns: none !important;
    gap: 32px !important;
    padding: 0 !important;
    margin: 0 !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 0 0 auto !important;
  }

  .site-nav a,
    .topbar-unified .site-nav a{
    flex: 0 0 auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.05px !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .topbar-unified .site-nav a:nth-child(1),
    .site-nav a:nth-child(1){
    width: 56px !important;
  }

  .topbar-unified .site-nav a:nth-child(2),
    .site-nav a:nth-child(2){
    width: 68px !important;
  }

  .topbar-unified .site-nav a:nth-child(3),
    .site-nav a:nth-child(3){
    width: 96px !important;
  }

  .topbar-unified .site-nav a:nth-child(4),
    .site-nav a:nth-child(4){
    width: 56px !important;
  }

  .topbar-unified .site-nav a:nth-child(5),
    .site-nav a:nth-child(5){
    width: 88px !important;
  }

  .topbar-unified .site-nav a:nth-child(6),
    .site-nav a:nth-child(6){
    width: 80px !important;
  }

  .kspl-menu-toggle{
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    margin-left: 18px !important;
  }

  .kspl-menu-drawer{
    width: min(420px, 84vw) !important;
    max-width: 420px !important;
  }

  .ks-footer-brand,
    .ks-footer-modern-nav,
    .ks-footer-contact-wrap,
    .ks-footer-blog-box{
    width: 100% !important;
    max-width: none !important;
    text-align: left !important;
    justify-items: start !important;
    justify-content: start !important;
  }

  .ks-footer-modern-logo{
    width: 126px !important;
    max-width: 126px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .ks-footer-brand-text{
    text-align: left !important;
  }

  .ks-footer-blog-box{
    padding-left: 0 !important;
    border-left: 0 !important;
  }

  .ks-footer-modern-copy{
    padding-bottom: 20px !important;
  }

  .ks-footer-modern-nav{
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    width: 100% !important;
    padding-top: 14px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
    white-space: nowrap !important;
    transform: none !important;
  }

  .ks-footer-modern-inner{
    grid-template-columns: 1fr 1fr !important;
    justify-items: start !important;
    gap: 34px 58px !important;
    padding: 48px 34px 34px !important;
    padding-top: 32px !important;
  }
}

/* ==================================================
   TABLET PORTRAIT
================================================== */

@media (min-width: 769px) and (max-width: 980px){

.topbar-unified .header-shell,
    .topbar-unified > .wrap.header-shell,
    .header-shell{
    min-height: 86px !important;
    padding-left: 20px !important;
    padding-right: 8px !important;
    gap: 18px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .brand img,
    .topbar-unified .brand img,
    .topbar-unified .brand img[style]{
    width: auto !important;
    height: 68px !important;
    max-height: 68px !important;
    object-fit: contain !important;
  }

  .site-nav,
    .topbar-unified .site-nav{
    display: none !important;
  }

  .site-nav a,
    .topbar-unified .site-nav a{
    width: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.05px !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .kspl-menu-toggle{
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    margin-left: 14px !important;
  }

  .kspl-menu-drawer{
    width: min(420px, 84vw) !important;
    max-width: 420px !important;
  }

  .ks-footer-modern-inner{
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
    gap: 24px !important;
    padding: 42px 20px 30px !important;
  }

  .ks-footer-brand{
    justify-items: center !important;
    text-align: center !important;
    gap: 14px !important;
  }

  .ks-footer-modern-logo{
    width: 126px !important;
    max-width: 126px !important;
  }

  .ks-footer-brand-text{
    font-size: 14.5px !important;
    line-height: 1.62 !important;
  }

  .ks-footer-modern-nav{
    align-items: center !important;
    justify-content: center !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: 360px !important;
    padding: 14px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16) !important;
  }

  .ks-footer-modern-nav a{
    padding: 6px 6px !important;
    font-size: 11.5px !important;
  }

  .ks-footer-contact-wrap{
    width: 100% !important;
    max-width: 340px !important;
  }

  .ks-footer-contact{
    justify-content: center !important;
    justify-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .ks-footer-contact-item{
    display: block !important;
    text-align: center !important;
  }

  .ks-footer-contact-label{
    display: none !important;
  }

  .ks-footer-contact-text span{
    font-size: 13.5px !important;
    line-height: 1.55 !important;
  }

  .ks-footer-blog-box{
    width: 100% !important;
    max-width: 350px !important;
    gap: 10px !important;
    padding: 16px 0 0 !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .ks-footer-blog-title{
    font-size: 14.5px !important;
  }

  .ks-footer-blog-text{
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .ks-footer-blog-btn{
    width: min(100%, 260px) !important;
    height: 42px !important;
    padding: 0 16px !important;
    font-size: 13px !important;
  }

  .ks-footer-modern-copy{
    margin: 0 20px !important;
    padding: 16px 0 22px !important;
    text-align: center !important;
    font-size: 12.5px !important;
  }

  html body .ks-footer-modern .ks-footer-modern-inner{
    padding-top: 38px !important;
    padding-bottom: 36px !important;
  }

  html body{
    padding-top: 86px !important;
  }

  html body .topbar-unified .header-shell,
    html body .topbar-unified > .wrap.header-shell,
    html body .header-shell{
    min-height: 86px !important;
    height: 86px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 20px !important;
    padding-right: 8px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    box-sizing: border-box !important;
  }

  html body .brand img,
    html body .topbar-unified .brand img,
    html body .topbar-unified .brand img[style]{
    width: auto !important;
    height: 68px !important;
    max-height: 68px !important;
    object-fit: contain !important;
  }
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px){

.topbar-unified{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    transform: translate3d(0, 0, 0) !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    z-index: 99999 !important;
    will-change: transform;
  }

  html body{
    padding-top: 86px !important;
  }

  .topbar-unified .header-shell,
    .topbar-unified > .wrap.header-shell,
    .header-shell{
    position: relative !important;
    min-height: 86px !important;
    height: 86px !important;
    padding: 0 16px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
  }

  .brand,
    .topbar-unified .brand{
    margin: 0 !important;
  }

  .brand img,
    .topbar-unified .brand img,
    .topbar-unified .brand img[style]{
    width: auto !important;
    height: 64px !important;
    max-height: 64px !important;
    object-fit: contain !important;
  }

  .site-nav,
    .topbar-unified .site-nav{
    display: none !important;
  }

  .site-nav a.active::after,
    .topbar-unified .site-nav a.active::after{
    bottom: -8px !important;
    height: 2px !important;
  }

  .kspl-drawer-logo img{
    height: 56px !important;
    max-height: 56px !important;
  }

  .kspl-drawer-nav{
    padding-top: 28px !important;
  }

  .kspl-drawer-nav a{
    min-height: 64px !important;
    font-size: 18px !important;
    gap: 15px !important;
  }

  .kspl-drawer-contact{
    margin-top: 18px !important;
    padding-top: 26px !important;
    gap: 16px !important;
  }

  .ks-footer-blog-btn span:first-child{
    width: 18px !important;
    height: 18px !important;
    font-size: 12px !important;
    border-radius: 4px !important;
  }

  .ks-footer-blog-btn .naver-official-icon svg{
    width: 18px !important;
    height: 18px !important;
  }

  .site-nav a,
    .topbar-unified .site-nav a{
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    text-align: center !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    font-size: 11px !important;
    letter-spacing: -0.25px !important;
  }

  .kspl-menu-toggle{
    position: absolute !important;
    top: 21px !important;
    left: auto !important;
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    margin-left: 0 !important;
    right: 8px !important;
  }

  .kspl-menu-drawer{
    max-width: 380px !important;
    padding: 26px 28px 34px !important;
    width: 84vw !important;
    padding-left: 26px !important;
    padding-right: 26px !important;
  }

  .floating-contact{
    right: 8px !important;
    bottom: 24px !important;
  }

  .floating-contact a{
    width: 46px;
    height: 46px;
  }

  .ks-footer-modern-inner{
    width: 100%;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
    gap: 24px !important;
    padding: 42px 20px 30px !important;
  }

  .ks-footer-brand{
    grid-template-columns: 1fr;
    justify-items: center !important;
    text-align: center !important;
    gap: 14px !important;
  }

  .ks-footer-modern-logo{
    max-height: 58px !important;
    width: 126px !important;
    max-width: 126px !important;
  }

  .ks-footer-brand-text{
    text-align: center;
    letter-spacing: -0.25px !important;
    font-size: 14.5px !important;
    line-height: 1.62 !important;
  }

  .ks-footer-modern-nav{
    margin: 2px auto 0 !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: 360px !important;
    padding: 14px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16) !important;
  }

  .ks-footer-modern-nav a{
    line-height: 1.2 !important;
    width: auto;
    letter-spacing: -0.35px;
    padding: 6px 6px !important;
    font-size: 11.5px !important;
  }

  .ks-footer-contact-wrap{
    width: 100% !important;
    max-width: 340px !important;
  }

  .ks-footer-contact{
    flex-direction: column;
    max-width: 330px;
    justify-content: center !important;
    justify-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .ks-footer-contact-item{
    display: block !important;
    text-align: center !important;
  }

  .ks-footer-contact-label{
    display: none !important;
  }

  .ks-footer-contact-text span{
    font-size: 13.5px !important;
    line-height: 1.55 !important;
  }

  .ks-footer-blog-box{
    margin-top: 2px !important;
    width: 100% !important;
    max-width: 350px !important;
    gap: 10px !important;
    padding: 16px 0 0 !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .ks-footer-blog-title{
    line-height: 1.25 !important;
    font-size: 14.5px !important;
  }

  .ks-footer-blog-text{
    max-width: 270px !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .ks-footer-blog-btn{
    gap: 8px !important;
    box-shadow: 0 8px 16px rgba(3, 199, 90, 0.12) !important;
    width: min(100%, 260px) !important;
    height: 42px !important;
    padding: 0 16px !important;
    font-size: 13px !important;
  }

  .ks-footer-modern-copy{
    margin: 0 20px !important;
    padding: 16px 0 22px !important;
    text-align: center !important;
    font-size: 12.5px !important;
  }
}
