@charset "utf-8";

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Noto+Sans+KR:wght@300;400;500;600&display=swap');

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --navy:          #0a1628;
  --navy-mid:      #112240;
  --navy-light:    #1b3a6b;
  --purple:        #5e1a84;
  --purple-soft:   #7b35a3;
  --purple-pale:   #f0e8f8;
  --gold:          #c8a84b;
  --gold-light:    #e8c97a;
  --cream:         #faf8f4;
  --white:         #ffffff;
  --text-dark:     #0d1b2a;
  --text-mid:      #3d4f6a;
  --text-muted:    #7a8ba0;
  --border:        #e2e8f0;
  --border-dark:   rgba(255,255,255,0.09);

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', 'Noto Sans KR', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;

  --shadow-card: 0 4px 24px rgba(10,22,40,0.10);
  --shadow-lift: 0 16px 48px rgba(10,22,40,0.18);
  --shadow-deep: 0 28px 70px rgba(10,22,40,0.28);

  --ease:       cubic-bezier(0.4,0,0.2,1);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
html { font-size: 62.5%; scroll-behavior: smooth; }
@media screen and (max-width: 768px) { html { font-size: 50%; } }

body {
  font-family: var(--ff-body);
  color: #222;
  min-width: 320px;
  background: #fff;
  font-size: 62.5%;
  overflow: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a, a:hover { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, li { list-style: none; }

/* ============================================================
   3. GLOBAL UTILITIES
   ============================================================ */
.bg_primary { background-color: var(--navy); }
.img-responsive { display: block; max-width: 100%; height: auto; }
.ir-pm  { display:block; overflow:hidden; font-size:0; line-height:0; text-indent:-9999px; }
.ir-wa  { display:block; overflow:hidden; position:relative; width:100%; height:100%; z-index:-1; }
.screen-out { display:block; overflow:hidden; position:absolute; left:-9999px; width:1px; height:1px; font-size:0; line-height:0; text-indent:-9999px; }
.screen-hide { font-size:0; line-height:0; visibility:hidden; }
.blind  { overflow:hidden; position:absolute; top:0; left:0; width:1px; height:1px; font-size:0; line-height:0; }
.teleNum { color:inherit !important; }
.clear_fix { width:100%; position:relative; }
.clear_fix::after { content:''; display:block; clear:both; }
.pc_only   { display:block; }
.mobile_only { display:none; }
.sound_only { overflow:hidden; position:absolute; clip:rect(0,0,0,0); width:1px; height:1px; }

.k_wrap {
  display:block; width:100%; min-width:1400px;
  clear:both; position:relative; overflow:hidden;
}
.k_wrap::after { display:block; height:0; content:"."; font-size:0; visibility:hidden; clear:both; }

.k_container {
  position:relative; width:100%; max-width:1400px;
  margin:0; padding:0; clear:both;
}
.k_container::after { display:block; height:0; content:"."; font-size:0; visibility:hidden; clear:both; }
.k_container.type_center { margin:0 auto; }

.k_container1000 { position:relative; width:1000px; min-width:1000px; margin:0; padding:0; clear:both; }
.k_container1000::after { display:block; height:0; content:"."; font-size:0; visibility:hidden; clear:both; }
.k_container1000.type_center { margin:0 auto; }

.k_container_wide_contents { width:100%; max-width:100% !important; }

html.layer_on,
html.layer_on body { overflow:hidden; }

.tran-animate { -webkit-transition:all 0.5s ease; -moz-transition:all 0.5s ease; -o-transition:all 0.5s ease; transition:all 0.5s ease; }
.fd-transition { -webkit-transition:all .3s ease; transition:all .3s ease; }
.fd-transition-2 { -webkit-transition:all .9s ease; transition:all .9s ease; }

.font_nanum { font-family:'Nanum Gothic'; }
.font_noto  { font-family:'Noto Sans KR'; }
.font_malgun { font-family:'Malgun Gothic'; }
.font_open  { font-family:'Open Sans'; }
.font_montserrat { font-family:'Montserrat'; }
.font_gmarket { font-family:'Gmarket Sans'; }

.scrollOpacity { opacity:0; transition:opacity 1s; }
.scrollOpacity.active { opacity:1; }

.parallax-init-pc { transform:translate3d(0,100px,0); transition:transform 3.6s cubic-bezier(0.165,0.84,0.44,1); }
.parallax-init-pc.add-stage { transform:translate3d(0,0,0) scale(1) rotate(0) !important; }

.parallax-init-opcity { opacity:0; transform:translateY(-100%); transition:all 0.5s ease; }
.parallax-init-opcity.add-stage { opacity:1; transform:translateY(0); }

/* Opacity helpers */
.opacity_0  { opacity:0; }
.opacity_10 { opacity:0.1; }
.opacity_20 { opacity:0.2; }
.opacity_25 { opacity:0.25; }
.opacity_30 { opacity:0.3; }
.opacity_40 { opacity:0.4; }
.opacity_50 { opacity:0.5; }
.opacity_60 { opacity:0.6; }
.opacity_70 { opacity:0.7; }
.opacity_75 { opacity:0.75; }
.opacity_80 { opacity:0.8; }
.opacity_90 { opacity:0.9; }
.opacity_95 { opacity:0.95; }

@media (max-width:1600px) { .k_wrap, .k_container { min-width:100%; max-width:100%; } }
@media (max-width:768px)  { .pc_only { display:none; } .mobile_only { display:block; } }

/* ── Shared section atoms ─────────────────────────────────── */
.section-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  font-size:1.2rem; font-weight:700;
  color:var(--purple); letter-spacing:0.12em; text-transform:uppercase;
  background:var(--purple-pale); padding:5px 16px; border-radius:20px; margin-bottom:18px;
}
.section-eyebrow.gold {
  background:rgba(200,168,75,0.12); color:var(--gold);
  border:1px solid rgba(200,168,75,0.20);
}

.section-title {
  font-family:var(--ff-display);
  font-size:4.0rem; font-weight:700; color:var(--text-dark);
  letter-spacing:-0.025em; line-height:1.2; margin-bottom:16px;
}
.section-title.light { color:var(--white); }

.section-sub { font-size:1.7rem; color:var(--text-muted); line-height:1.7; }
.section-sub.light { color:rgba(255,255,255,0.55); }

.section-divider {
  width:56px; height:3px;
  background:linear-gradient(90deg,var(--gold),var(--gold-light));
  border-radius:2px; margin:18px auto 0;
}
.section-divider.left { margin-left:0; }


/* ── section_wrap ─────────────────────────────────────────── */
.section_wrap {
  max-width:1400px; width:100%; margin:auto;
  padding:0 48px; text-align:center; position:relative;
}
.section_wrap .section_tit_wrap  { margin-bottom:50px; }
.section_wrap .section_tit {
  position:relative; font-size:46px; letter-spacing:-0.5px;
  font-weight:bold; display:inline-block; margin-top:50px;
}
.section_wrap .section_txt { font-size:18px; color:#686868; margin-top:14px; }
.section_tit_wrap h2 { font-size:24px; color:var(--purple); }

.section_wrap .section_tit_wrap2 { margin-bottom:50px; text-align:left; }
.section_tit_wrap2 .section_tit02 { position:relative; font-size:40px; font-weight:600; letter-spacing:-0.5px; display:inline-block; color:#222; }
.section_tit_wrap2 .section_txt02 { font-size:18px; color:#686868; margin-top:14px; display:inline-block; margin-left:40px; line-height:24px; }

.point { color:#ff8400; }

@media (max-width:1024px) {
  .section_wrap { max-width:100%; padding:0 15px; }
  .section_wrap .section_tit_wrap { margin-bottom:30px; }
  .section_wrap .section_tit { font-size:32px; }
  .section_tit_wrap2 .section_tit02 { font-size:28px; }
}
@media (max-width:768px) {
  .section_wrap .section_tit { font-size:28px; margin-bottom:0; }
  .section_tit_wrap2 .section_tit02 { display:inline-block; }
  .section_tit_wrap2 .section_txt02 { display:block; margin-left:0; }
}


/* ============================================================
   5. HEADER & NAVIGATION
   ============================================================ */
header#header {
  position:fixed; top:0; left:0;
  width:100%; z-index:1000;
  transition:background var(--transition),box-shadow var(--transition);
}
header#header::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0.50) 0%,transparent 100%);
  pointer-events:none; z-index:0;
  transition:opacity var(--transition);
}
header#header.scrolled::before { opacity:0; }
header#header.scrolled,
header#header.bg {
  background:rgba(10,22,40,0.97);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 2px 32px rgba(0,0,0,0.28);
}
header#header::after {
  content:''; position:absolute; left:0; bottom:0;
  width:100%; height:1px; background:rgba(255,255,255,0.08);
}

.header_wrap { width:100%; }

.headerBox {
  position:relative; z-index:2;
  display:flex; align-items:center;
  justify-content:space-between;
  height:86px; max-width:1600px;
  margin:0 auto; padding:0 48px; gap:28px;
}

/* ── Logo ─────────────────────────────────────────────────── */
.header_wrap .logo, .logo {
  flex-shrink:0; display:flex; align-items:center; gap:12px;
  text-decoration:none; cursor:pointer;
}

/* Legacy logo fallback */
.header_wrap .logo {
  width:210px; height:60px;
  background-image:url("../img/logo_en.png");
  background-repeat:no-repeat; background-position:center; background-size:contain;
  filter:
        drop-shadow(1px 0 0 rgba(255,255,255,0.9))
        drop-shadow(-1px 0 0 rgba(255,255,255,0.9))
        drop-shadow(0 1px 0 rgba(255,255,255,0.9))
        drop-shadow(0 -1px 0 rgba(255,255,255,0.9));
  position:relative;
}
.header_wrap .logo h1,
.header_wrap .logo h1 a { display:block; width:100%; height:100%; margin:0; }

.header_inner a { color:#fff; font-weight:500; text-shadow:0 1px 2px rgba(0,0,0,0.35); }
.header_inner a:hover { opacity:0.85; }

/* ── Desktop nav ──────────────────────────────────────────── */
.header_inner { flex:1; display:flex; justify-content:center; }
#gnbnav { width:100%; background:transparent; }
#gnbnav ul.gnb_list { display:flex; justify-content:center; align-items:stretch; margin:0; padding:0; }
#gnbnav ul.gnb_list > li { position:relative; }
#gnbnav ul.gnb_list > li > a {
  display:flex; align-items:center;
  padding:0 20px; height:86px;
  font-size:1.45rem; font-weight:500;
  color:rgba(255,255,255,0.88);
  white-space:nowrap; letter-spacing:0.01em; position:relative;
  transition:color var(--transition);
}
#gnbnav ul.gnb_list > li > a::after {
  content:''; position:absolute;
  bottom:18px; left:20px; right:20px;
  height:1.5px; background:var(--gold);
  transform:scaleX(0); transform-origin:left center;
  transition:transform var(--transition);
}
#gnbnav ul.gnb_list > li:hover > a { color:var(--white); }
#gnbnav ul.gnb_list > li:hover > a::after,
#gnbnav ul.gnb_list > li > a.on::after { transform:scaleX(1); }

/* Dropdown */
#gnbnav ul.subNavi {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: rgba(10,22,40,0.98);
  border: 1px solid var(--border-dark);
  border-top: 2.5px solid var(--gold);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 6px 0;
  box-shadow: var(--shadow-deep);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
}
#gnbnav ul.gnb_list > li:hover > ul.subNavi {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#gnbnav ul.subNavi li a {
  display:block; padding:10px 24px;
  font-size:1.4rem; color:rgba(255,255,255,0.68);
  transition:color 0.2s,background 0.2s,padding-left 0.2s; white-space:nowrap;
  text-align: center;
}
#gnbnav ul.subNavi li a:hover { color:var(--gold); background:rgba(255,255,255,0.04); padding-left:30px; }

.subMenuBg { position:absolute; left:0; top:190px; width:100%; padding:0; z-index:-1; display:none; }
#header_overlay { width:100%; height:100%; position:fixed; top:0; left:0; z-index:899; background:rgba(0,0,0,0.8); display:none; }

/* ── Header right: lang + contact ─────────────────────────── */
div.lang { display:flex; align-items:center; gap:10px; flex-shrink:0; position:static; z-index:99; }
div.lang::after { display:block; content:""; clear:both; }

div.lang div.lang_m {
  position:relative;
  border:1.5px solid rgba(255,255,255,0.28); border-radius:24px;
  padding:7px 18px; cursor:pointer;
  transition:border-color var(--transition),background var(--transition);
}
div.lang div.lang_m:hover { border-color:rgba(255,255,255,0.55); background:rgba(255,255,255,0.05); }
div.lang div.lang_m > a {
  font-size:1.3rem; font-weight:600; color:var(--white);
  display:flex; align-items:center; gap:7px; white-space:nowrap;
}
div.lang div.lang_m ul.lang_sub {
  display:none; position:absolute; top:calc(100% + 8px); left:0;
  background:rgba(10,22,40,0.97);
  border:1px solid var(--border-dark); border-radius:10px;
  padding:8px 0; min-width:110px;
  box-shadow:var(--shadow-deep); z-index:300;
}
div.lang div.lang_m:hover ul.lang_sub { display:block; }
div.lang div.lang_m ul.lang_sub li a {
  display:block; padding:8px 18px; font-size:1.3rem;
  color:rgba(255,255,255,0.65); transition:color 0.2s;
}
div.lang div.lang_m ul.lang_sub li a:hover,
div.lang div.lang_m ul.lang_sub li a.active { color:var(--gold); }

div.lang div.contact {
  border:1.5px solid var(--gold); border-radius:24px; padding:7px 20px; cursor:pointer;
  transition:background var(--transition),box-shadow var(--transition);
}
div.lang div.contact:hover { background:var(--gold); box-shadow:0 6px 20px rgba(200,168,75,0.30); }
div.lang div.contact .contact_btn a {
  font-size:1.3rem; font-weight:700; color:var(--gold);
  display:flex; align-items:center; gap:7px;
  white-space:nowrap; letter-spacing:0.04em; transition:color var(--transition);
}
div.lang div.contact:hover .contact_btn a { color:var(--navy); }

#lang_btn i { margin-left:10px; }

/* ── Hamburger ─────────────────────────────────────────────── */
div#totalMenu {
  display:none; width:44px; height:44px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:var(--radius-sm); cursor:pointer; flex-shrink:0;
  position:relative; z-index:2;
}
div#totalMenu .bars {
  position:absolute; inset:0;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:5px;
}
div#totalMenu .bars .bline {
  display:block; width:20px; height:1.5px;
  background:var(--white); border-radius:2px; transition:all 0.3s ease;
}
div#totalMenu .bars .bline.mid1,
div#totalMenu .bars .bline.mid2 { width:14px; align-self:flex-end; margin-right:12px; }
div#totalMenu .bars .bline.box_top,
div#totalMenu .bars .bline.box_bottom,
div#totalMenu .bars .bline.box_left,
div#totalMenu .bars .bline.box_right { display:none; }
div#totalMenu.on .bars .bline.top  { transform:rotate(45deg) translate(4.5px,4.5px); width:20px; }
div#totalMenu.on .bars .bline.bot  { transform:rotate(-45deg) translate(4.5px,-4.5px); width:20px; }
div#totalMenu.on .bars .bline.mid1 { opacity:0; }
div#totalMenu.on .bars .bline.mid2 { display:none; }

/* ── Mobile drawer ────────────────────────────────────────── */
.total_menu_bg {
  display:none; position:fixed; inset:0;
  background:rgba(0,0,0,0.60); z-index:1099;
}
.total_menu_contain {
  position:fixed; top:0; right:-100%;
  width:min(380px,100%); height:100%;
  background:var(--navy); z-index:1100; overflow-y:auto;
  transition:right 0.38s cubic-bezier(0.4,0,0.2,1);
}
.total_menu_contain.active { right:0; }
.total_menu_in { display:flex; flex-direction:column; min-height:100%; }
.total_menu_inner { flex:1; padding:100px 36px 60px; background:rgba(17,34,64,0.98); position:relative; }
.total_menu_inner::before {
  content:'Purple Ocean'; display:block; font-family:var(--ff-display);
  font-size:2.0rem; font-weight:700; color:var(--white); margin-bottom:6px; letter-spacing:-0.01em;
}
.total_menu_inner::after {
  content:'International Co., Ltd.'; display:block; font-size:1.2rem;
  color:rgba(255,255,255,0.38); letter-spacing:0.06em; text-transform:uppercase;
  margin-bottom:40px; padding-bottom:32px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.menu-close-btn {
  position:absolute; top:24px; right:24px;
  width:40px; height:40px; background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.12); border-radius:var(--radius-sm);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:rgba(255,255,255,0.6); font-size:1.6rem;
  transition:background 0.2s,color 0.2s;
}
.menu-close-btn:hover { background:rgba(255,255,255,0.12); color:var(--white); }

ul.tm { display:block; }
ul.tm > li { display:block; margin-bottom:8px; }
ul.tm > li > a.nav1stMenu {
  display:block; font-family:var(--ff-display);
  font-size:2.0rem; font-weight:600; color:rgba(255,255,255,0.75);
  padding:8px 0; border-bottom:1px solid rgba(255,255,255,0.06);
  transition:color 0.2s; letter-spacing:-0.01em;
}
ul.tm > li > a.nav1stMenu:hover { color:var(--gold); }

ul.subTm { margin:4px 0 12px; padding:0; width:100%; display:block; }
ul.subTm > li { display:block; width:100%; text-align:left; }
ul.subTm > li > a {
  display:block; font-size:1.4rem; font-weight:400;
  color:rgba(255,255,255,0.50); padding:6px 0 6px 16px;
  transition:color 0.2s,padding-left 0.2s,border-left-color 0.2s;
  border-left:1px solid rgba(255,255,255,0.08);
}
ul.subTm > li > a:hover { color:var(--gold); padding-left:22px; border-left-color:var(--gold); }

ul.subTm3 { width:100%; padding:0; }
ul.subTm3 > li { display:block; }
ul.subTm3 > li > a { color:#999; font-size:1.0em; display:inline-block; }
ul.subTm3 > li > a:hover { color:#fff; }

.total_menu_contain .total_menu_in_bottom { width:300px; margin:0 auto; }
.total_menu_contain .total_menu_in_bottom .total_menu_in_bottom_btn {
  float:left; width:130px; height:34px; font-size:1.5rem; line-height:30px;
  color:#fff; text-align:center; border:solid 1px #fff; margin-right:35px;
}
.total_menu_contain .total_menu_in_bottom .total_menu_in_bottom_btn:last-child { margin-right:0; }
.total_menu_contain .total_menu_in_bottom .total_menu_in_bottom_btn a { color:#fff; }

/* Header responsive */
@media (max-width:1400px) {
  div#totalMenu { display:flex; align-items:center; justify-content:center; }
  .header_inner, div.lang { display:none !important; }
  .headerBox { padding:0 20px; height:auto; min-height:67px; }
  .logo-sub-text { display:none; }
  header#header, .headerBox { min-width:100%; width:100%; }
}
@media (max-width:768px) {
  .headerBox { min-height:68px; }
  .total_menu_inner { padding:80px 24px 40px; }
  ul.tm > li > a.nav1stMenu { font-size:1.7rem; }
  .total_menu_inner::before { display:none; }
  .total_menu_inner::after  { display:none; }
  ul.subTm > li > a { font-size:15px; line-height:28px; margin-bottom:5px; display:block; }
}

/* Mobile classic menu */
.m_menu_h { position:fixed; top:0; right:0; z-index:99999; width:310px; height:100%; overflow-y:auto; }
.nav-top { border-bottom:1px solid #0080ff; background:#fff; }
.btn-x { text-align:right; padding:0 10px; }
.btn-x i { color:#454545; line-height:57px; }
.m-nav > li { border-bottom:1px solid #0080ff; padding:0; }
.m-nav > li > a { color:#454545; font-size:16px; font-weight:bold; display:block; line-height:57px; padding-left:20px; position:relative; }
.m-nav > li > a.on { background:#0080ff; color:#fff; }
.m-nav > li > a i { position:absolute; top:50%; right:10px; margin-top:-8px; }
.sub_menu { display:none; background:#fff; opacity:0.7; }
.sub_menu > li > a { font-size:14px; color:#0080ff; display:block; line-height:35px; padding-left:20px; }
.sub_menu > li > a:hover { color:#fff; background:#6298db; }

#hd_nb { margin:20px; }
#hd_nb::after { display:block; visibility:hidden; clear:both; content:""; }
#hd_nb li { width:50%; float:left; text-align:center; line-height:25px; font-size:1.083em; font-weight:bold; }
#hd_nb li a { display:block; color:#717171; padding:20px 0; }
#hd_nb li i { font-size:20px; }
#hd_nb .hd_nb1 { border-right:1px solid #e2e5e7; }
.m_lang { padding:0 20px; margin-top:40px; }
.m_lang ul { overflow:hidden; width:100%; border:1px solid #0080ff; }
.m_lang ul li { width:50%; float:left; text-align:center; }
.m_lang ul li a { background:#fff; color:#454545; font-size:14px; padding:12px 0; display:block; width:100%; }
.m_lang ul li a.on { background:#0080ff; color:#fff; }
.dim { position:fixed; width:100%; height:100%; background:#000; opacity:0.5; top:0; z-index:999; }
.m_menu_bg { position:fixed; width:310px; height:100%; background:#fff; top:0; right:0; z-index:1000; }
.m_menu_wrap { position:fixed; display:none; top:0; left:0; right:0; width:100%; height:100%; margin:0 auto; z-index:9999; overflow-y:auto; }

#mgnb_open { position:absolute; top:10px; right:10px; padding:0 10px; height:40px; width:40px; border:0; background:none; font-size:3.2rem; display:none; }
#mgnb { display:none; background:#efefef; position:fixed; top:0; right:0; z-index:99999; width:100%; max-width:400px; height:100%; overflow-y:auto; box-shadow:0 0 5px rgba(55,55,5,0.4); }
#mgnb_1dul { background:#fff; }
#mgnb_1dul a { display:block; color:#000; }
.mgnb_1dli { position:relative; line-height:40px; }
.mgnb_1da { padding:5px 20px; border-bottom:1px solid #eee; font-weight:bold; font-size:1.6rem; }
.mgnb_2dul { display:none; background:#fafafa; }
.mgnb_2da { padding-left:30px; font-size:12px; }
#mgnb_close { display:block; position:absolute; right:8px; top:10px; z-index:99; font-weight:bold; height:40px; width:40px; border:0; color:#bfb8b2; font-size:3.2rem; background:transparent; }

/* etc menus */
.etc_menu { position:relative; height:40px; line-height:40px; text-align:right; float:right; }
.etc_menu a { position:relative; font-size:13px; line-height:40px; color:#9d9d9d; display:inline-block; padding-right:15px; }
.etc_menu a:before { content:''; position:absolute; top:50%; right:5px; background:#9d9d9d; margin-top:-5px; width:1px; height:10px; }
.etc_menu a:last-child { padding-right:0; }
.etc_menu a:last-child:before { width:0; height:0; }

/* ============================================================
   6. HERO / MAIN SLIDER
   ============================================================ */
.vg_inner { width:100%; min-height:100vh; position:relative; overflow:hidden; clear:both; padding-top:0; }
.vg_inner::after { clear:both; display:block; content:""; }

.main-slider { margin:0; padding:0; }
.main-slider-li {
  width:100%; min-height:100vh;
  background-size:cover; background-position:center;
  background-repeat:no-repeat; position:relative;
}
.main-slider-li::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(10,22,40,0.72) 0%,rgba(17,34,64,0.55) 50%,rgba(94,26,132,0.28) 100%);
  z-index:1;
}

.vg_title {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  z-index:2; text-align:center; color:var(--white);
  width:90%; max-width:900px; word-break:keep-all;
}
.vg_title .vg_tit_box1 {
  font-family:var(--ff-display);
  font-size:clamp(4.0rem,6vw,7.2rem); font-weight:700; line-height:1.1;
  letter-spacing:-0.02em; text-shadow:0 4px 32px rgba(0,0,0,0.3);
}
.vg_title .vg_tit_box2 { font-size:2.6rem; font-weight:300; margin-top:14px; letter-spacing:0.04em; opacity:0.88; }
.vg_title .vg_tit_box3 { font-size:1.8rem; margin-top:18px; line-height:1.75; font-weight:300; opacity:0.75; }

.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(200,168,75,0.12); border:1px solid rgba(200,168,75,0.30);
  color:var(--gold); font-size:1.3rem; font-weight:600;
  letter-spacing:0.12em; text-transform:uppercase;
  padding:8px 20px; border-radius:24px; margin-bottom:28px; backdrop-filter:blur(8px);
}


/* Pager */
#main-bx-pager { position:absolute; bottom:40px; left:50%; transform:translateX(-50%); z-index:10; }
#main-bx-pager ul { display:flex; gap:10px; }
#main-bx-pager ul li a { display:block; width:28px; height:3px; background:rgba(255,255,255,0.30); border-radius:2px; transition:background var(--transition),width var(--transition); }
#main-bx-pager ul li a.active { background:var(--gold); width:48px; }

/* Scroll hint */
.scroll-hint { position:absolute; bottom:100px; left:50%; transform:translateX(-50%); z-index:5; display:flex; flex-direction:column; align-items:center; gap:8px; }
.scroll-hint span { font-size:1.1rem; font-weight:600; color:rgba(255,255,255,0.40); letter-spacing:0.10em; text-transform:uppercase; }
.scroll-mouse { width:22px; height:36px; border:1.5px solid rgba(255,255,255,0.28); border-radius:12px; display:flex; justify-content:center; padding-top:6px; }
.scroll-mouse::after { content:''; width:3px; height:8px; background:var(--gold); border-radius:2px; animation:scrollDown 1.6s ease-in-out infinite; }
@keyframes scrollDown { 0%{opacity:1;transform:translateY(0);} 80%{opacity:0;transform:translateY(10px);} 100%{opacity:0;transform:translateY(10px);} }

/* Animations */
.vg_tit_box_ani  { animation:titAnimation 1.0s ease-in-out alternate; }
.vg_tit_box_ani1 { animation:titAnimation 1.2s ease-out forwards; }
.vg_tit_box_ani2 { animation:titAnimation 1.6s ease-out forwards; }
.vg_tit_box_ani3 { animation:titAnimation 2.0s ease-out forwards; }
.vg_tit_box_ani4 { animation:titAnimation 2.6s ease-in-out alternate; }

@keyframes titAnimation { from{opacity:0;transform:translateY(30px);} to{opacity:1;transform:translateY(0);} }
@keyframes upDownAnimation { from{transform:translateY(0);} to{transform:translateY(6px);} }

.vg_down { position:absolute; bottom:80px; left:50%; margin-left:-13px; width:26px; height:64px; text-align:center; z-index:99; }
.upDownAni { animation:upDownAnimation .4s ease-in-out infinite alternate; }

.nanum_pen { font-family:'Nanum Pen Script'; font-size:70px; line-height:1.3; }

@media (max-width:960px) { .stats-bar { display:none; } }
@media (max-width:768px) {
  .vg_title .vg_tit_box1 { font-size:3.8rem; }
  .vg_inner { min-width:100%; height:500px; position:relative; }
  .scroll-hint, #main-bx-pager { display:none; }
  .vg_down { display:none; }
}
@media (max-width:1024px) {
  .vg_inner .ytube iframe { display:none; }
  .vg_inner .ytube object { display:block; }
}

/* ============================================================
   7. MAIN SERVICE SECTION
   ============================================================ */
#main_service {
  position: relative;
  width: 100%;
  padding: 110px 0;
  background: var(--white);
}

#main_service .main_service_list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin-top: 56px;
}

/* Card */
#main_service .srv-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease),
              box-shadow .3s var(--ease),
              border-color .3s var(--ease);
  position: relative;
  text-decoration: none;
}

#main_service .srv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,var(--purple),var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

#main_service .srv-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(94,26,132,.12);
}

#main_service .srv-card:hover::before {
  transform: scaleX(1);
}

/* Image */
#main_service .srv-img {
  height: 232px;
  overflow: hidden;
}

#main_service .srv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

#main_service .srv-card:hover .srv-img img {
  transform: scale(1.06);
}

/* Body */
#main_service .srv-body {
  padding: 20px 22px 24px;
}

#main_service .srv-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

#main_service .srv-title::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--purple);
  border-radius: 2px;
}

#main_service .srv-desc {
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: left;
}

#main_service .srv-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--purple);
  margin-top: 14px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s, transform .25s;
}

#main_service .srv-card:hover .srv-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width:960px) {
  #main_service .main_service_list {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:768px) {
  #main_service {
    padding: 60px 0;
  }
  #main_service .main_service_list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============================================================
   8. VIDEO SECTION
   ============================================================ */
#main_video {
  position:relative; width:100%; padding:120px 0;
  background:var(--navy); overflow:hidden; color:#fff;
}
#main_video::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 15% 50%,rgba(94,26,132,0.28) 0%,transparent 55%),
             radial-gradient(ellipse at 85% 50%,rgba(200,168,75,0.09) 0%,transparent 55%);
  pointer-events:none;
}
.video-wrap {
  max-width:900px; margin:52px auto 0;
  border-radius:var(--radius-md); overflow:hidden;
  box-shadow:0 40px 90px rgba(0,0,0,0.55); position:relative;
}
.video-wrap iframe { display:block; width:100%; min-height:506px; }
#main_video iframe { max-width:940px; min-height:530px; width:100%; display:block; margin:0 auto; }

@media (max-width:1024px) { #main_video { padding:80px 0; } .video-wrap iframe, #main_video iframe { min-height:300px; } }
@media (max-width:768px) { .video-wrap iframe, #main_video iframe { min-height:220px; } }

/* ============================================================
   9. HANDLING / Q&A SECTION
   ============================================================ */
#main_handling {
  position:relative; width:100%; padding:110px 0;
  background:var(--cream);
}
.main_slide_wrap { width:100%; overflow:hidden; margin-top:50px; }

@media (max-width:1024px) { #main_handling { padding:80px 0; } }
@media (max-width:768px) { #main_handling { padding:50px 0; } }

/* ============================================================
   10. PARTNERS SECTION
   ============================================================ */
#main_parter { position:relative; width:100%; padding:110px 0; background:var(--white); }
@media (max-width:1024px) { #main_parter { padding:80px 0; } }
@media (max-width:768px) { #main_parter { padding:50px 0; } }

/* ============================================================
   11. INQUIRY / CONTACT SECTION
   ============================================================ */
#main_inquiry {
  position:relative; width:100%; padding:120px 0;
  background:var(--navy); overflow:hidden; color:#fff;
}
#main_inquiry::before {
  content:''; position:absolute; top:0; right:0;
  width:42%; height:100%; background:rgba(94,26,132,0.10);
  clip-path:polygon(12% 0,100% 0,100% 100%,0 100%); pointer-events:none;
}
#main_inquiry .inquiry_left  { float:left; width:49%; }
#main_inquiry .inquiry_right { float:right; width:49%; }

.section_tit_wrap3 .section_tit03 { margin-bottom:15px; text-align:left; color:#fff; font-size:24px; font-weight:700; }
.section_tit_wrap3 .section_tit03 img { width:320px; }
.section_tit_wrap3 .section_txt03 { font-size:18px; letter-spacing:-0.5px; display:block; color:#fff; text-align:left; }

#main_inquiry .inquiry_left_box { margin-top:30px; text-align:left; }
#main_inquiry .inquiry_left_box dl { background-color:rgba(0,0,0,.5); padding:35px 30px; width:95%; }
#main_inquiry .inquiry_left_box dl dt { font-size:28px; color:#fff; font-weight:700; margin-bottom:15px; }
#main_inquiry .inquiry_left_box dl dd.inquiry_txt { font-size:16px; margin-bottom:30px; line-height:24px; }
#main_inquiry .inquiry_left_box dl dd.inquiry_number01::before { content:""; display:inline-block; width:42px; height:42px; background:url('../img/inquiry_call.png') no-repeat; position:absolute; top:-13px; left:0; }
#main_inquiry .inquiry_left_box dl dd.inquiry_number02::before { content:""; display:inline-block; width:42px; height:42px; background:url('../img/inquiry_mail.png') no-repeat; position:absolute; top:-13px; left:0; }
.inquiry_number01, .inquiry_number02 { font-size:20px; display:inline-block; position:relative; padding-left:50px; font-weight:700; }
.inquiry_number02 { margin-top:15px; }
.mg_r15 { margin-right:20px; }
.p_tag { font-size:18px; line-height:1.45; margin-top:40px; opacity:0.8; }
.p_tag span { display:inline-block; margin-right:7px; margin-bottom:7px; }

.section_tit_wrap4 { margin-bottom:25px; }
.section_tit_wrap4 .section_tit04 { margin-bottom:15px; text-align:left; color:#fff; font-size:40px; font-weight:700; }
.section_tit_wrap4 .section_txt04 { font-size:18px; letter-spacing:-0.5px; display:block; color:#fff; text-align:left; line-height:24px; }

/* Form fields */
.mainBox_right .mailBoxWrap { margin-bottom:10px; }
.mainBox_right .mailBoxWrap .frmMailInput,
.mainBox_right .mailBoxWrap .frmMailTextArea {
  width:100%; font-size:1.5rem; font-family:var(--ff-body);
  color:var(--text-dark); padding:14px 18px;
  border:1.5px solid transparent; border-radius:var(--radius-sm);
  background:rgba(255,255,255,0.92); outline:none;
  transition:border-color 0.25s,box-shadow 0.25s; margin:0;
}
.mainBox_right .mailBoxWrap .frmMailInput:focus,
.mainBox_right .mailBoxWrap .frmMailTextArea:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(200,168,75,0.15); }
.mainBox_right .mailBoxWrap .frmMailTextArea { height:200px; resize:vertical; }
.frmMailInput::placeholder, .frmMailTextArea::placeholder { color:#999; }

.mainBox_right .mail_submit { text-align:right; margin-top:14px; }
.mainBox_right .mail_submit .frmMailSubmit {
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:var(--navy); font-size:1.5rem; font-weight:700;
  font-family:var(--ff-body); letter-spacing:0.06em;
  padding:16px 0; width:180px;
  border:none; border-radius:var(--radius-sm); cursor:pointer;
  transition:transform 0.25s,box-shadow 0.25s;
}
.mainBox_right .mail_submit .frmMailSubmit:hover { transform:translateY(-2px); box-shadow:0 10px 28px rgba(200,168,75,0.30); }

@media (max-width:1400px) {
  .inquiry_number01, .inquiry_number02 { display:block; }
  .inquiry_number02 { margin-left:0; margin-top:32px; }
}
@media (max-width:1024px) {
  #main_inquiry .inquiry_left  { float:none; width:100%; }
  #main_inquiry .inquiry_right { float:none; width:100%; margin-top:50px; }
  #main_inquiry .inquiry_left_box dl { width:100%; }
  .inquiry_number01, .inquiry_number02 { display:block; padding-left:35px; }
  .inquiry_number02 { margin-left:0; margin-top:15px; }
  .mainBox_right .mail_submit .frmMailSubmit { width:100%; }
}
@media (max-width:768px) {
  #main_inquiry { padding:80px 0; }
  #main_inquiry .inquiry_left_box dl dt { font-size:20px; }
  .section_tit_wrap4 .section_tit04 { font-size:28px; }
  .section_tit_wrap4 .section_txt04 { font-size:15px; }
  .p_tag { font-size:16px; }
}

/* ============================================================
   12. FOOTER
   ============================================================ */
#footer { background:var(--navy); border-top:1px solid rgba(255,255,255,0.06); min-width:100%; height:auto; }
#footer.subFooter { background:var(--navy); }

.copyright_wrap { max-width:1400px; position:relative; margin:0 auto; padding:45px 0 15px; }

.footer-inner {
  max-width:1400px; margin:0 auto; padding:60px 48px 32px;
  display:grid; grid-template-columns:240px 1fr auto;
  gap:60px; align-items:flex-start;
}
.footer-logo p { font-size:1.4rem; color:rgba(255,255,255,0.40); line-height:1.8; }
.footer-links { display:grid; grid-template-columns:repeat(3,1fr); gap:40px; }
.footer-col h4 { font-size:1.3rem; font-weight:700; color:rgba(255,255,255,0.50); letter-spacing:0.10em; text-transform:uppercase; margin-bottom:16px; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul li a { font-size:1.4rem; color:rgba(255,255,255,0.55); transition:color 0.2s; }
.footer-col ul li a:hover { color:var(--gold); }
.footer-contact { text-align:right; }
.footer-contact .fc-tel { font-family:var(--ff-display); font-size:2.0rem; font-weight:600; color:var(--gold); margin-bottom:6px; }
.footer-contact .fc-mail { font-size:1.4rem; color:rgba(255,255,255,0.50); margin-bottom:20px; }
.footer-contact .fc-social { display:flex; gap:10px; justify-content:flex-end; }
.footer-contact .fc-social a { width:38px; height:38px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.08); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.50); font-size:1.5rem; transition:color 0.2s,background 0.2s; }
.footer-contact .fc-social a:hover { color:var(--gold); background:rgba(200,168,75,0.08); }

.footer-bottom {
  max-width:1400px; margin:0 auto; padding:20px 48px 28px;
  display:flex; justify-content:space-between; align-items:center;
  border-top:1px solid rgba(255,255,255,0.06); flex-wrap:wrap; gap:12px;
}
.footer-bottom .copy { font-size:1.3rem; color:rgba(255,255,255,0.30); }
.footer-bottom .ft-menu { display:flex; gap:24px; }
.footer-bottom .ft-menu a { font-size:1.3rem; color:rgba(255,255,255,0.40); transition:color 0.2s; }
.footer-bottom .ft-menu a:hover { color:var(--gold); }

/* Legacy footer elements */
.ft_ul { padding:15px 0; margin:0; }
.ft_ul li { display:inline-block; margin:0 15px 0 0; position:relative; }
.ft_ul li a { display:block; line-height:2.0; font-size:0.8rem; color:#cbcbcb; font-weight:300; }
.ft_ul li::after { content:''; position:absolute; top:50%; right:-10px; margin-top:-4px; width:1px; height:10px; background:#cbcbcb; }
.ft_ul li:last-child::after { width:0; height:0; }

.copyrighContent .fContent { width:100%; margin-top:40px; display:block; vertical-align:top; font-size:16px; line-height:1.65; color:rgba(255,255,255,0.55); text-align:left; }
.copyrighContent .fContent a { color:rgba(255,255,255,0.7); margin-right:15px; margin-bottom:10px; display:inline-block; }
.copyrighContent .fContent span { font-weight:bold; display:inline-block; margin-right:5px; color:#fff; }

.copy_by address { color:rgba(255,255,255,0.4); padding:0; font-style:normal; margin:0; font-size:0.8rem; letter-spacing:0.1em; float:left; }
.copy_by address span.pc { display:block; }
.copy_by address span.mobile { display:none; }
.copy_by div.adm { clear:both; display:block; margin-bottom:10px; text-align:left; margin-top:1.0rem; }
.copy_by div.adm a { color:rgba(255,255,255,0.4); font-size:0.8em; }

.fCopySub1 { font-size:1.3rem; letter-spacing:0.01rem; color:#9b9d97; opacity:.3; display:inline-block; }
.fCopySub2 { text-align:left; font-size:1.4rem; opacity:.6; margin-top:50px; }

.copyright_wrap .sns_menu { position:absolute; top:30px; right:0; }
.copyright_wrap .sns_menu ul li { display:inline-block; margin-left:5px; }
.copyright_wrap .sns_menu ul li img { width:40px; }

.goTop {
  position:fixed; bottom:36px; right:36px;
  width:48px; height:48px; background:var(--gold); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  z-index:500; box-shadow:0 6px 22px rgba(200,168,75,0.35);
  opacity:0; pointer-events:none;
  transition:opacity 0.3s,transform 0.3s; cursor:pointer;
  color:var(--navy); font-size:1.8rem; border:none;
}
.goTop.show { opacity:1; pointer-events:auto; }
.goTop:hover { transform:translateY(-4px); }
/* fallback for older anchor-based goTop */
.goTop a { display:block; width:48px; height:48px; text-align:center; }
.goTop a i { color:var(--navy); line-height:48px; font-size:2.0em; }

@media (max-width:1200px) {
  .footer-inner { grid-template-columns:1fr; gap:40px; }
  .footer-contact { text-align:left; }
  .footer-contact .fc-social { justify-content:flex-start; }
  .footer-links { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:1400px) { .copyright_wrap { padding:30px 10px; } }
@media (max-width:1024px) {
  .fCopySub1 { float:none; width:100%; text-align:center; }
  .fCopySub2 { float:none; width:100%; text-align:center; }
  .copyrighContent .fContent { font-size:14px; line-height:18px; display:block; padding:0; width:100%; text-align:center; }
  .copyright_wrap .sns_menu { position:relative; margin:auto; text-align:center; }
  .copy_by { position:relative; top:0; left:0; right:0; margin-top:50px; }
  .copy_by address { letter-spacing:0; float:none; }
  .copy_by address span.pc { display:none; }
  .copy_by address span.mobile { display:block; text-align:center; word-break:keep-all; }
  .copy_by div.adm { text-align:center; margin-top:2.0rem; font-size:16px; }
}
@media (max-width:768px) {
  .footer-inner { padding:40px 20px 24px; }
  .footer-links { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; padding:20px; }
  .footer-bottom .ft-menu { flex-wrap:wrap; justify-content:center; }
  .copy_by address span.pc { display:none; }
  .copy_by address span.mobile { display:block; text-align:center; }
  .ft_ul { padding:10px; text-align:center; }
}

/* ============================================================
   13. SUB-PAGE HEADER
   ============================================================ */
.sub_vg { position:relative; margin-top:86px; overflow:hidden; }
.sub_vg #vg_con {
  position:relative; width:100%; min-height:340px;
  display:flex; align-items:center; justify-content:center;
}
.sub_vg .main-slider-li { min-height:340px; background-size:cover; background-position:center; }
.sub_vg .main-slider-li::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(10,22,40,0.72) 0%,rgba(94,26,132,0.35) 100%);
}
.sub_vg #vg_con h2 {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  font-family:var(--ff-display); font-size:4.2rem; font-weight:700;
  color:var(--white); text-align:center; white-space:nowrap;
  letter-spacing:-0.02em; padding:0; margin:0; z-index:5;
  text-shadow:0 4px 24px rgba(0,0,0,0.35);
}
.sub_vg #vg_con h2::after {
  content:''; display:block; width:48px; height:2.5px;
  background:linear-gradient(90deg,var(--gold),var(--gold-light));
  border-radius:2px; margin:14px auto 0;
}

/* Sub nav tabs */
.subNavBarInnerWrap { width:100%; background:var(--white); border-bottom:1px solid var(--border); position:sticky; top:86px; z-index:100; }
.subNavBarInner {
  max-width:1400px; margin:0 auto; height:58px;
  display:flex; align-items:stretch; background:transparent; border:none; position:static;
}
.subNavBarInner .subNavBar1st { display:flex; width:100%; margin:0; padding:0; }
.subNavBarInner .subNavBar1st li {
  display:flex; align-items:center; justify-content:center; flex:1;
  font-size:1.55rem; font-weight:500; color:#5a6a80;
  border-right:1px solid var(--border); border-bottom:3px solid transparent;
  transition:color 0.2s,border-bottom-color 0.2s;
}
.subNavBarInner .subNavBar1st li:last-child { border-right:none; }
.subNavBarInner .subNavBar1st li a { display:flex; align-items:center; height:100%; width:100%; justify-content:center; color:inherit; padding:0 16px; font-size:1.55rem; font-weight:500; border-bottom:3px solid transparent; }
.subNavBarInner .subNavBar1st li.active,
.subNavBarInner .subNavBar1st li.active a { color:var(--purple); border-bottom-color:var(--purple); font-weight:600; }
.subNavBarInner .subNavBar1st li:hover { color:var(--purple); }

div#vg_con { width:1400px; height:100%; margin:0 auto; text-align:center; position:relative; display:block; }
div#vg_con h2 { position:relative; padding:120px 0; text-align:center; font-size:4.5rem; margin:0 0 0 0; font-weight:500; text-transform:uppercase; }
div#vg_con h2 small { font-weight:400; font-size:0.5em; display:block; margin-bottom:10px; color:#cfcfcf; letter-spacing:0.5rem; }
div#vg_con p { text-align:center; color:#fff; font-size:1.25em; padding:0; margin:0; text-transform:uppercase; word-break:keep-all; }

@media (max-width:768px) {
  .sub_vg { margin-top:68px; }
  .sub_vg #vg_con { min-height:240px; }
  .sub_vg .main-slider-li { min-height:240px; }
  .sub_vg #vg_con h2 { font-size:2.8rem; white-space:normal; width:90%; }
  .subNavBarInnerWrap { top:68px; }
  div#vg_con { width:100%; min-width:100%; padding:0; }
}
@media (max-width:1024px) {
  .sub_vg { height:300px; }
  .subNavBarInner { display:none; }
  .subNavBarInnerWrap { display:none; }
}

/* ── Breadcrumb / SubNav (legacy) ──────────────────────────── */
.subNavWrap { position:relative; width:100%; min-width:1400px; background:#fff; height:70px; display:none !important; }
#subPageWrap, #subPageWrap_WIDE_ { width:100%; position:relative; background:#fff; z-index:1; }
#subPage { max-width:1400px; padding:0 0 100px; margin:0 auto; }
.contents_wrap.noSidebar { width:100%; float:none; margin-left:0; padding:0; }
div.left_wrap { width:220px; float:left; position:relative; }

@media (max-width:1024px) {
  #subPageWrap { min-width:100%; padding:0; }
  #subPage { padding:0 16px 50px; }
}

.title_wrap { overflow:hidden; padding-bottom:80px; position:relative; display:none; }
.sub_service_img { position:relative; width:100%; height:440px; overflow:hidden; }
.sub_service_img img { width:100%; height:100%; object-fit:cover; object-position:center 35%; filter:brightness(0.72); }
.sub_service_img::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(10,22,40,0.55) 0%,rgba(94,26,132,0.25) 100%); }

/* ── Sub-page shared layout ─────────────────────────────────── */
/* Sub hero banner (used in message.php, cert.php, etc.) */
.sub-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sub-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  transition: transform 0.6s ease;
}
.sub-hero:hover .sub-hero-bg { transform: scale(1.03); }
.sub-hero-bg.msg-bg  { background-image: url('../img/mission_vg01.jpg'); }
.sub-hero-bg.cert-bg { background-image: url('../img/cert_bg.jpg'); }
.sub-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.55) 0%, rgba(94,26,132,0.35) 100%);
  pointer-events: none;
}
.sub-hero-title {
  position: relative;
  z-index: 2;
  font-family: var(--ff-display);
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  text-align: center;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.sub-hero-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2.5px;
  background: linear-gradient(90deg,var(--gold),var(--gold-light));
  border-radius: 2px;
  margin: 14px auto 0;
}

/* Sub-page tabs */
.sub-tabs {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 86px;
  z-index: 100;
}
.sub-tabs ul {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  height: 58px;
  padding: 0;
}
.sub-tabs ul li {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-bottom-color 0.2s;
}
.sub-tabs ul li:last-child { border-right: none; }
.sub-tabs ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-size: 1.55rem;
  font-weight: 500;
  color: #5a6a80;
  padding: 0 16px;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-bottom-color 0.2s;
}
.sub-tabs ul li.active a,
.sub-tabs ul li a:hover {
  color: var(--purple);
  border-bottom-color: var(--purple);
  font-weight: 600;
}

/* Sub-page content wrapper */
.sub-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 48px 100px;
}

@media (max-width: 1400px) { .sub-wrap { padding: 60px 24px 80px; } }
@media (max-width: 768px) {
  .sub-hero { height: 220px; margin-top: 68px; }
  .sub-hero-title { font-size: 2.8rem; }
  .sub-tabs { top: 68px; display: none; }
  .sub-wrap { padding: 40px 16px 60px; }
}

/* ============================================================
   14. MESSAGE PAGE (인사말)
   ============================================================ */

/* CEO 2-col grid */
.ceo-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: flex-start;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 72px;
}

/* Photo frame */
.photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy-mid), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,var(--gold),var(--gold-light));
  z-index: 2;
}
.photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 60px; height: 60px;
  z-index: 2;
  border-bottom: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
  border-radius: 0 0 20px 0;
}
.photo-frame img { width:100%; height:100%; object-fit:cover; object-position:center top; transition:transform 0.6s ease; }
.photo-frame:hover img { transform: scale(1.04); }

.photo-placeholder {
  font-size: 8.0rem;
  color: rgba(255,255,255,.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.photo-placeholder span {
  font-size: 1.6rem;
  font-weight: 600;
  color: rgba(255,255,255,.28);
  letter-spacing: .06em;
}

/* Name card below photo */
.namecard {
  margin-top: 22px;
  background: var(--navy);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.namecard .nc-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg,var(--gold),var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1.7rem; flex-shrink: 0;
}
.nc-name { font-family: var(--ff-display); font-size: 1.9rem; font-weight: 700; color: var(--white); }
.nc-title { font-size: 1.3rem; font-weight: 500; color: var(--gold); margin-top: 2px; }

/* Text column */
.ceo-text { padding-top: 10px; }
.g-headline {
  font-family: var(--ff-display);
  font-size: 3.6rem; font-weight: 700;
  color: var(--navy); line-height: 1.2;
  letter-spacing: -.025em; margin-bottom: 28px;
}
.g-headline em { font-style: normal; color: var(--purple); }
.g-lead {
  font-size: 1.75rem; font-weight: 500;
  color: var(--navy); line-height: 1.65;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.g-body { font-size: 1.65rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; }
.g-body strong { color: var(--navy); font-weight: 600; }

/* Signature */
.signature {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 20px;
}
.sig-company { font-size: 1.4rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.sig-name { font-family: var(--ff-display); font-size: 2.0rem; font-weight: 700; color: var(--purple); }
.sig-role { font-size: 1.3rem; color: var(--text-muted); margin-top: 2px; }
.sig-svg { width: 120px; opacity: .7; }

/* 4 info blocks */
.info-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
.ib { border-radius: var(--radius-md); padding: 30px; position: relative; overflow: hidden; }
.ib.navy   { background: var(--navy); }
.ib.cream  { background: var(--cream); border: 1px solid var(--border); }
.ib.purple { background: var(--purple); }
.ib.white  { background: var(--white); border: 1px solid var(--border); }
.ib::before {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.ib-title {
  font-family: var(--ff-display);
  font-size: 1.75rem; font-weight: 700;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.ib.navy .ib-title   { color: var(--gold); }
.ib.cream .ib-title  { color: var(--navy); }
.ib.purple .ib-title { color: var(--gold-light); }
.ib.white .ib-title  { color: var(--purple); }
.ib ul li {
  font-size: 1.45rem; padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; gap: 10px; align-items: flex-start;
}
.ib.cream ul li,
.ib.white ul li { border-bottom-color: rgba(0,0,0,.06); color: var(--text-dark); }
.ib.navy ul li,
.ib.purple ul li { color: rgba(255,255,255,.78); }
.ib ul li:last-child { border-bottom: none; }
.ib ul li::before { content: '▸'; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.ib.cream ul li::before,
.ib.white ul li::before { color: var(--purple); }

/* Photo grid (greeting images) */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
  margin-bottom: 64px;
}
.photo-grid .ph {
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.photo-grid .ph:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.photo-grid .ph div {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: rgba(255,255,255,.30);
  transition: font-size .4s;
}
.photo-grid .ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.photo-grid .ph:hover img { transform: scale(1.06); }
.photo-grid .ph:hover div { font-size: 4.5rem; }
.ph-1 { background: linear-gradient(135deg,var(--navy),var(--navy-light)); }
.ph-2 { background: linear-gradient(135deg,var(--purple),var(--purple-soft)); }
.ph-3 { background: linear-gradient(135deg,var(--navy-mid),var(--purple)); }
.ph-4 { background: linear-gradient(135deg,#1a3a60,var(--purple-soft)); }

/* Closing box */
.closing-box {
  background: var(--navy);
  border-radius: 20px;
  padding: 52px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(94,26,132,.22) 0%, transparent 60%);
  pointer-events: none;
}
.closing-box::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,var(--gold),var(--gold-light),var(--gold));
}
.closing-rule {
  width: 48px; height: 2px;
  background: linear-gradient(90deg,var(--gold),var(--gold-light));
  border-radius: 2px;
  margin: 0 auto 28px;
}
.closing-box p {
  position: relative;
  font-family: var(--ff-display);
  font-size: 2.0rem; font-weight: 600;
  color: var(--white); line-height: 1.7; margin-bottom: 14px;
}
.closing-box p.sub {
  font-family: var(--ff-body);
  font-size: 1.5rem; font-weight: 400;
  color: rgba(255,255,255,.50);
  margin-bottom: 0;
}

/* Message page responsive */
@media (max-width:1024px) {
  .ceo-grid { grid-template-columns: 1fr; gap: 36px; }
  .photo-frame { max-width: 320px; margin: 0 auto; }
  .namecard { max-width: 320px; margin: 16px auto 0; }
  .g-headline { font-size: 2.8rem; }
  .info-blocks { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:640px) {
  .g-headline { font-size: 2.4rem; }
  .closing-box { padding: 36px 20px; }
  .closing-box p { font-size: 1.7rem; }
}

/* Legacy greeting styles (kept for compatibility) */
.ceo-profile-section { display:grid; grid-template-columns:380px 1fr; gap:72px; align-items:flex-start; padding:80px 0 70px; border-bottom:1px solid var(--border); margin-bottom:72px; }
.ceo-photo-frame { position:relative; border-radius:20px; overflow:hidden; box-shadow:var(--shadow-deep); aspect-ratio:3/4; background:var(--navy-mid); }
.ceo-photo-frame img { width:100%; height:100%; object-fit:cover; object-position:center top; transition:transform 0.6s ease; }
.ceo-photo-frame:hover img { transform:scale(1.04); }
.ceo-photo-frame::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,var(--gold),var(--gold-light)); z-index:2; }
.ceo-namecard { margin-top:24px; background:var(--navy); border-radius:14px; padding:22px 24px; display:flex; align-items:center; gap:16px; }
.ceo-namecard .nc-icon { width:44px; height:44px; background:linear-gradient(135deg,var(--gold),var(--gold-light)); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--navy); font-size:1.8rem; flex-shrink:0; }
.greeting-headline { font-family:var(--ff-display); font-size:3.6rem; font-weight:700; color:var(--navy); line-height:1.2; letter-spacing:-0.025em; margin-bottom:28px; }
.greeting-headline em { font-style:normal; color:var(--purple); }
.greeting-lead { font-size:1.75rem; font-weight:500; color:var(--navy); line-height:1.65; margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid var(--border); }
.greeting-body { font-size:1.65rem; color:var(--text-muted); line-height:1.85; margin-bottom:18px; }
.greeting-body strong { color:var(--navy); font-weight:600; }
.ceo-signature { margin-top:36px; padding-top:28px; border-top:1px solid var(--border); display:flex; align-items:center; gap:20px; }
.sig-company { font-size:1.5rem; font-weight:600; color:var(--navy); margin-bottom:4px; }
.sig-ceo { font-family:var(--ff-display); font-size:2.0rem; font-weight:700; color:var(--purple); }

.greeting-blocks { display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-bottom:64px; }
.g-block { border-radius:var(--radius-md); padding:32px; position:relative; overflow:hidden; }
.g-block.navy   { background:var(--navy); color:var(--white); }
.g-block.cream  { background:var(--cream); border:1px solid var(--border); }
.g-block.purple { background:var(--purple); color:var(--white); }
.g-block.white  { background:var(--white); border:1px solid var(--border); }
.g-block .g-block-title { font-family:var(--ff-display); font-size:1.8rem; font-weight:700; margin-bottom:16px; display:flex; align-items:center; gap:10px; }
.g-block.navy .g-block-title { color:var(--gold); }
.g-block.cream .g-block-title { color:var(--navy); }
.g-block.purple .g-block-title { color:var(--gold-light); }
.g-block.white .g-block-title { color:var(--purple); }
.g-block ul li { font-size:1.5rem; line-height:1.7; padding:7px 0; border-bottom:1px solid rgba(255,255,255,0.06); display:flex; align-items:flex-start; gap:10px; }
.g-block ul li::before { content:'▸'; color:var(--gold); font-size:1.1rem; flex-shrink:0; margin-top:2px; }
.g-block.cream ul li::before, .g-block.white ul li::before { color:var(--purple); }

.greeting_imgbox { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin:20px 0 64px; padding:0; }
.greeting_imgbox li { border-radius:12px; overflow:hidden; aspect-ratio:1/1; box-shadow:var(--shadow-card); transition:transform 0.3s var(--ease),box-shadow 0.3s var(--ease); }
.greeting_imgbox li:hover { transform:translateY(-6px); box-shadow:var(--shadow-lift); }
.greeting_imgbox li img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.4s ease; }
.greeting_imgbox li:hover img { transform:scale(1.06); }

@media (max-width:1024px) {
  .ceo-profile-section { grid-template-columns:1fr; gap:40px; }
  .greeting-headline { font-size:2.8rem; }
  .greeting-blocks { grid-template-columns:1fr; }
  .greeting_imgbox { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:640px) {
  .greeting-headline { font-size:2.4rem; }
}

/* ============================================================
   15. CERTIFICATION PAGE (인허가)
   ============================================================ */

/* Cert page header */
.cert-header { text-align: center; margin-bottom: 60px; }
.cert-page-title {
  font-family: var(--ff-display);
  font-size: 4.0rem; font-weight: 700;
  color: var(--navy); letter-spacing: -.025em;
  line-height: 1.2; margin-bottom: 14px;
}
.cert-page-sub {
  font-size: 1.7rem; color: var(--text-muted);
  max-width: 600px; margin: 0 auto; line-height: 1.65;
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: var(--navy);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 68px;
  position: relative;
}
.trust-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,var(--gold),var(--gold-light),var(--gold));
}
.trust-item {
  padding: 30px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 3.0rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.trust-label { font-size: 1.3rem; font-weight: 500; color: rgba(255,255,255,.50); }

/* Cert card grid */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.cert-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,var(--purple),var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
  z-index: 2;
}
.cert-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.cert-card:hover::before { transform: scaleX(1); }

/* Cert image area (for icon-based cards) */
.cert-img-area {
  height: 180px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: var(--text-muted);
  transition: background .3s;
  position: relative; overflow: hidden;
}
.cert-img-area .cert-icon-bg {
  position: absolute; inset: 0;
  opacity: .06; background: var(--purple);
  transition: opacity .3s;
}
.cert-card:hover .cert-img-area .cert-icon-bg { opacity: .12; }
.cert-img-area i { position: relative; z-index: 1; transition: transform .3s var(--ease); }
.cert-card:hover .cert-img-area i { transform: scale(1.15); }

/* Cert image area (for actual photo-based cards from certWrap) */
.cert-img-wrap {
  display: block;
  position: relative;
  width: 100%; height: 607px;
  background: var(--cream);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
}
.cert-img-wrap:hover .cert-img { transform: scale(1.05); }
.cert-img, img.cert-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.cert-card:hover .cert-img { transform: scale(1.07); }

/* Cert card body */
.cert-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.cert-name-ko { font-size: 1.45rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; line-height: 1.4; }
.cert-name-en { font-size: 1.2rem; font-weight: 400; color: var(--text-muted); }
.cert-pdf-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 1.2rem; font-weight: 600; color: var(--purple);
  margin-top: 10px;
  opacity: 0; transform: translateY(5px);
  transition: opacity .25s, transform .25s;
}
.cert-card:hover .cert-pdf-btn { opacity: 1; transform: translateY(0); }

/* certWrap (legacy photo-based grid) */
.certWrap ul { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.certWrap ul li { background:var(--white); border:1px solid var(--border); border-radius:18px; overflow:hidden; box-shadow:var(--shadow-card); transition:transform 0.3s var(--ease),box-shadow 0.3s var(--ease),border-color 0.3s var(--ease); display:flex; flex-direction:column; cursor:pointer; position:relative; }
.certWrap ul li::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--purple),var(--gold)); transform:scaleX(0); transform-origin:left; transition:transform 0.3s var(--ease); z-index:2; }
.certWrap ul li:hover { transform:translateY(-8px); box-shadow:var(--shadow-lift); border-color:rgba(94,26,132,0.15); }
.certWrap ul li:hover::before { transform:scaleX(1); }
.certWrap ul li .txt { padding:18px 20px 22px; flex:1; display:flex; flex-direction:column; justify-content:center; }
.certWrap ul li .txt h5 { font-size:1.45rem; font-weight:700; color:var(--navy); line-height:1.45; margin:0 0 4px; }
.certWrap ul li .txt h5:last-child { font-size:1.2rem; font-weight:400; color:var(--text-muted); margin:0; }

/* Note box */
.cert-note {
  margin-top: 52px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 22px 26px;
  display: flex; align-items: flex-start; gap: 16px;
}
.note-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg,var(--gold),var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1.5rem;
}
.note-text { font-size: 1.5rem; color: var(--navy); line-height: 1.7; }
.note-text strong { color: var(--purple); }

/* Cert page responsive */
@media (max-width:1200px) { .cert-grid { grid-template-columns: repeat(3,1fr); } .certWrap ul { grid-template-columns:repeat(3,1fr); } .trust-strip { grid-template-columns: repeat(2,1fr); } }
@media (max-width:1024px) { .cert-page-title { font-size: 3.0rem; } .cert-grid { grid-template-columns: repeat(2,1fr); gap: 18px; } .certWrap ul { grid-template-columns:repeat(2,1fr); gap:16px; } }
@media (max-width:640px)  { .cert-grid { grid-template-columns: 1fr; } .certWrap ul { grid-template-columns:1fr; } .trust-strip { grid-template-columns: 1fr 1fr; } .cert-page-title { font-size: 2.4rem; } }



/* ============================================================
   17. MISC / LEGACY
   ============================================================ */
.main-wrapper { overflow:hidden; }
.bx-wrapper { position:relative; }
.bx-viewport { overflow:hidden !important; }
#wrap { height:auto; background:transparent; }
#main_container { width:100%; padding:0; margin:0 auto; position:relative; z-index:0; overflow:hidden; }
:focus-visible { outline:2px solid var(--gold); outline-offset:3px; }

.pc_line { display:block; }
.mobile_line1 { display:none; }
@media (max-width:1024px) { .pc_line { display:none; } .mobile_line1 { display:block; } }

.ol { position:relative; margin:0 0 10px; text-align:center; }
#ol_before { background:#212020; padding:34px 15px; text-align:left; }
.btn_log  { display:inline-block; background:#3a8afd; color:#fff; border-radius:3px; padding:10px; border:0; text-decoration:none; vertical-align:middle; }
.btn_log2 { display:inline-block; background:transparent; color:#fff; border:0; border-radius:3px; padding:10px; text-decoration:none; vertical-align:middle; }

.rowc ul { font-size:0; line-height:0; margin:0; padding:0; }
.rowc ul::after { clear:both; display:block; content:""; }
.rowc ul.grid2 > li { width:48%; margin:0 0 0 2%; display:inline-block; text-align:center; }
.rowc ul.grid3 > li { width:31%; margin:0 0 0 2%; display:inline-block; text-align:center; }
.rowc ul.grid4 > li { width:23%; margin:0 0 0 2%; display:inline-block; text-align:center; }

#subPageTitle .subPageTitleTxt1 { background:url(../img/subTitleBG.png) no-repeat; background-position:center 67px; font-size:2.5rem; color:#292e3d; text-align:center; padding-top:120px; word-break:keep-all; }
#subPageTitle .subPageTitleTxt2 { font-size:1.25rem; color:#292e3d; text-align:center; padding-top:5px; padding-bottom:60px; }
@media (max-width:1024px) { #subPageTitle .subPageTitleTxt1 { font-size:1.25rem; padding-top:60px; } #subPageTitle .subPageTitleTxt2 { font-size:1rem; padding-bottom:50px; } }

@media print { header, #footer, #main_character, #main_video { display:none; } }


/* ============================================================
   18. SUB-PAGE SHARED LAYOUT
   ============================================================ */

/* Sub content wrapper */
.sub_content { width:100%; }

/* Hero banner image */
.sub_service_img {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-top: 86px;
}
.sub_service_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.72);
  display: block;
}
.sub_service_img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.55) 0%, rgba(94,26,132,0.25) 100%);
}

/* Main text area */
.sub_service_txt {
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 48px 80px;
}

/* Left label column */
.service_txt_left {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}

/* Right content column */
.service_txt_right {
  width: 100%;
}

/* Two-column split layout (message2.php) */
.service_txt_right_full {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}
.service_text_left { flex: 70%; }
.service_text_right { flex: 30%; }

/* Custom right layout (trade pages) */
.service_txt_right_custom {
  width: 100%;
  margin-top: 0;
}

/* service_div — side-by-side intro (trade pages) */
.service_div {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 48px;
}
.service_div .greeting { flex: 1; }
.trade_img {
  flex-shrink: 0;
  width: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.trade_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Divider lines */
.line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 56px 0;
}
.line2 {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 32px 0;
}

/* ============================================================
   19. MESSAGE2.PHP — CI 소개
   ============================================================ */

/* Body paragraphs */
.greeting p {
  font-size: 1.65rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

/* Highlighted purple text */
.greeting p.color_font,
.color_font {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.7;
  margin: 24px 0 16px;
}

/* Ocean concept list items */
.greeting_imgbox03 {
  margin: 0 0 16px 0;
  padding: 0;
}
.greeting_imgbox03 li {
  font-size: 1.55rem;
  color: var(--text-dark);
  line-height: 1.8;
  padding: 12px 16px;
  background: var(--cream);
  border-left: 4px solid var(--purple);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 10px;
  list-style: none;
}

/* CI images column */
.greeting_imgbox04 {
  margin: 0 0 28px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.greeting_imgbox04 li {
  list-style: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.greeting_imgbox04 li img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.greeting_imgbox04 li:hover img { transform: scale(1.03); }

/* PURPLE color box */
.purple { margin-top: 8px; }
.purple_box {
  background: var(--purple);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  color: var(--white);
}
.purple_box h1 {
  font-family: var(--ff-display);
  font-size: 3.0rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0 0 16px 0;
  letter-spacing: 0.06em;
}
.purple_box ul { padding: 0; margin: 0; }
.purple_box ul li {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.78);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  list-style: none;
  font-family: 'Courier New', monospace;
}
.purple_box ul li:last-child { border-bottom: none; }

/* Greeting headings (trade pages) */
.greeting h2 {
  font-family: var(--ff-display);
  font-size: 2.8rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin-bottom: 20px !important;
  letter-spacing: -0.02em;
}

/* ============================================================
   20. MISSION.PHP — 행동양식 (conduct table)
   ============================================================ */

.conduct_box {
  margin: 60px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.conduct_box img { width: 100%; display: block; }

/* Table wrapper */
.table_box { width: 100%; overflow-x: auto; }
.table_box_margin { margin: 32px 0; }

.table_box table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.35rem;
  font-family: var(--ff-body);
  color: var(--text-dark);
}
.table_box table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  padding: 14px 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.10);
  vertical-align: middle;
  font-size: 1.3rem;
}
.table_box table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.7;
  font-size: 1.3rem;
}
.table_box table td.border-none,
.table_box table th.border-none {
  border-left: none;
  border-right: none;
}
.table_box table td.on {
  background: var(--purple-pale);
  color: var(--purple);
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
}
.table_box table tr:hover td { background: rgba(94,26,132,0.03); }
.table_box table th.on {
  background: var(--purple);
}

/* ============================================================
   21. LOCATION.PHP — 오시는길
   ============================================================ */

.location { width: 100%; }

.locationBtm {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  margin: 40px 0;
}
.loc_right { flex: 1; }

/* Location table */
.locTable01 {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.5rem;
}
.locTable01 caption { display: none; }
.locTable01 th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  padding: 16px 22px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
  vertical-align: top;
  min-width: 120px;
}
.locTable01 td {
  padding: 16px 22px;
  border: 1px solid var(--border);
  color: var(--text-dark);
  line-height: 1.75;
  vertical-align: top;
}
.locTable01 tr:nth-child(even) td { background: var(--cream); }

/* Global partner heading */
.loc_right h2 {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}

/* Kakao map containers */
.map_info { margin: 36px 0; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.map_info_m { display: none; }

/* ============================================================
   22. TRADE PAGES — Q&A + service lists
   ============================================================ */

/* Q&A text blocks */
p.service_txt01 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 8px;
  padding-top: 8px;
  line-height: 1.6;
}

/* Q&A answer/list blocks */
ul.service_txt01 {
  margin: 0 0 16px 0;
  padding: 0;
}
ul.service_txt01 p {
  font-size: 1.55rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 8px 0 12px;
}
ul.service_txt01 li {
  font-size: 1.5rem;
  color: var(--text-dark);
  line-height: 1.8;
  padding: 6px 0 6px 20px;
  position: relative;
  list-style: none;
  border-bottom: 1px solid var(--border);
}
ul.service_txt01 li:last-of-type { border-bottom: none; }
ul.service_txt01 li::before {
  content: '▸';
  color: var(--purple);
  position: absolute;
  left: 0;
  top: 7px;
  font-size: 1.1rem;
}

/* Bottom image row (trade_export) */
.sub_service_bottm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.bottm_img01,
.bottm_img02,
.bottm_img03 {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}
.bottm_img01 img,
.bottm_img02 img,
.bottm_img03 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.bottm_img01:hover img,
.bottm_img02:hover img,
.bottm_img03:hover img { transform: scale(1.05); }

/* Spacer */
.mineral_margin { height: 40px; }

/* HS Code / trade reference tables */
.service_txt_right_full table,
.service_txt_right_custom table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  margin-top: 12px;
}
.service_txt_right_full table td,
.service_txt_right_custom table td {
  padding: 12px 18px;
  border: 1px solid var(--border);
  vertical-align: middle;
  line-height: 1.7;
}
.service_txt_right_full table th,
.service_txt_right_custom table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  font-weight: 600;
  font-size: 1.4rem;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.08);
}
.service_txt_right_full table td.on,
.service_txt_right_custom table td.on,
.service_txt_right_full table th.on,
.service_txt_right_custom table th.on {
  background: var(--purple-pale);
  color: var(--purple);
  font-weight: 600;
}
.service_txt_right_full table td.right,
.service_txt_right_custom table td.right {
  color: var(--text-dark);
}
.service_txt_right_full table td a,
.service_txt_right_custom table td a {
  color: var(--purple);
  font-weight: 600;
  transition: color 0.2s;
}
.service_txt_right_full table td a:hover,
.service_txt_right_custom table td a:hover { color: var(--gold); }

/* HS code category header rows */
.service_txt_right_full table > tbody > tr > td[colspan],
.service_txt_right_custom table > tbody > tr > td[colspan] {
  background: var(--navy-mid);
  color: var(--gold);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

/* ============================================================
   23. RESPONSIVE — all sub-pages
   ============================================================ */

@media (max-width: 1200px) {
  .sub_service_txt { padding: 50px 24px 60px; }
  .service_div { gap: 36px; }
  .trade_img { width: 280px; }
}

@media (max-width: 1024px) {
  .sub_service_img { height: 300px; margin-top: 68px; }
  .service_txt_right_full { flex-direction: column; gap: 40px; }
  .service_text_left,
  .service_text_right { flex: none; width: 100%; }
  .service_div { flex-direction: column; }
  .trade_img { width: 100%; }
  .locationBtm { flex-direction: column; }
  .sub_service_bottm { grid-template-columns: 1fr; }
  .map_info { display: none; }
  .map_info_m { display: block; }
}

@media (max-width: 768px) {
  .sub_service_img { height: 220px; }
  .sub_service_txt { padding: 36px 16px 48px; }
  .service_txt_left { font-size: 2.4rem; }
  .greeting h2 { font-size: 2.2rem !important; }
  .table_box table { font-size: 1.2rem; }
  .locTable01 th,
  .locTable01 td { padding: 12px 14px; font-size: 1.35rem; }
  .locTable01 th { min-width: 90px; }
  .sub_service_bottm { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .sub_service_bottm { grid-template-columns: 1fr; }
  .purple_box h1 { font-size: 2.4rem; }
}

/* ============================================================
   24. SUB-PAGE COMPONENTS (message2, mission, location, trade pages)
   ============================================================ */

/* ── Shared sub-page header ──────────────────────────────── */
.sp-header {
  margin-bottom: 56px;
}
.sp-header .section-title {
  font-size: 3.6rem;
  margin-top: 12px;
}

/* ── Sub service hero image ──────────────────────────────── */
.sub_service_img {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  margin-top: 86px;
}
.sub_service_img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  filter: brightness(0.65);
  display: block;
  transition: transform 6s ease;
}
.sub_service_img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.60) 0%, rgba(94,26,132,0.30) 100%);
}

/* ============================================================
   25. MESSAGE2.PHP — CI 소개
   ============================================================ */

.ci-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: flex-start;
}

.ci-text .ci-block { margin-bottom: 32px; }
.ci-text .ci-block p {
  font-size: 1.65rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.ci-text .ci-block p strong { color: var(--navy); font-weight: 700; }

/* Ocean concept */
.ocean-concept { margin-top: 36px; }
.oc-label {
  font-family: var(--ff-display);
  font-size: 1.9rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  display: block;
}
.oc-item {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  align-items: flex-start;
}
.oc-item.red    { background: rgba(220,38,38,0.06); border-left: 4px solid #dc2626; }
.oc-item.blue   { background: rgba(59,130,246,0.06); border-left: 4px solid #3b82f6; }
.oc-item.purple-oc { background: var(--purple-pale); border-left: 4px solid var(--purple); }
.oc-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 6px;
}
.oc-item.red .oc-dot    { background: #dc2626; }
.oc-item.blue .oc-dot   { background: #3b82f6; }
.oc-item.purple-oc .oc-dot { background: var(--purple); }
.oc-content strong {
  display: block;
  font-size: 1.6rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.oc-content p {
  font-size: 1.5rem; color: var(--text-muted); line-height: 1.75; margin: 0 0 10px;
}
.oc-content ul { padding: 0; margin: 0; }
.oc-content ul li {
  font-size: 1.45rem; color: var(--navy);
  padding: 5px 0 5px 16px; position: relative; list-style: none;
}
.oc-content ul li::before { content: '▸'; color: var(--purple); position: absolute; left: 0; }

/* CI sidebar */
.ci-images {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px;
}
.ci-img-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.ci-img-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.ci-img-item:hover img { transform: scale(1.04); }

/* Color swatch */
.color-swatch {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.swatch-preview {
  height: 80px;
  background: var(--purple);
  position: relative;
}
.swatch-preview::after {
  content: 'Purple Ocean';
  position: absolute; bottom: 12px; right: 16px;
  font-family: var(--ff-display); font-size: 1.2rem;
  color: rgba(255,255,255,0.45); letter-spacing: 0.08em;
}
.swatch-info {
  background: var(--navy);
  padding: 22px 24px;
}
.swatch-info h3 {
  font-family: var(--ff-display);
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold); margin: 0 0 14px;
  letter-spacing: 0.10em;
}
.swatch-info ul { padding: 0; margin: 0; }
.swatch-info ul li {
  font-size: 1.35rem; color: rgba(255,255,255,0.65);
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  list-style: none; display: flex; gap: 12px; align-items: center;
  font-family: 'Courier New', monospace;
}
.swatch-info ul li:last-child { border-bottom: none; }
.swatch-info ul li span {
  font-size: 1.1rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.06em; min-width: 40px;
  font-family: var(--ff-body);
}

/* ============================================================
   26. MISSION.PHP — conduct table
   ============================================================ */

.conduct-img {
  width: 100%; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-card);
  margin-bottom: 48px;
}
.conduct-img img { width: 100%; display: block; }

.conduct-table-wrap { width: 100%; overflow-x: auto; margin-top: 8px; }
.conduct-table {
  width: 100%; border-collapse: collapse;
  font-size: 1.35rem; font-family: var(--ff-body);
}
.conduct-table thead th {
  background: var(--navy); color: var(--white);
  font-size: 1.3rem; font-weight: 700;
  padding: 16px 14px; text-align: center;
  border: 1px solid rgba(255,255,255,0.10);
  vertical-align: middle; white-space: nowrap;
}
.conduct-table thead th.th-warn {
  background: rgba(94,26,132,0.85);
  color: var(--gold-light);
}
.conduct-table tbody td {
  padding: 12px 14px;
  border: 1px solid var(--border);
  vertical-align: top; line-height: 1.7;
}
.conduct-table tbody td.td-cat {
  background: var(--navy-mid); color: var(--gold);
  font-weight: 700; font-size: 1.3rem;
  text-align: center; vertical-align: middle;
  white-space: nowrap; border-color: rgba(255,255,255,0.10);
}
.conduct-table tbody td.td-warn {
  background: rgba(220,38,38,0.04);
  color: #b91c1c; font-size: 1.3rem;
}
.conduct-table tbody tr:hover td:not(.td-cat):not(.td-warn) {
  background: rgba(94,26,132,0.03);
}

/* ============================================================
   27. LOCATION.PHP
   ============================================================ */

.loc-info-card {
  display: flex; align-items: center; gap: 24px;
  background: var(--navy); border-radius: var(--radius-md);
  padding: 28px 36px; margin-bottom: 36px;
  border-left: 4px solid var(--gold);
}
.loc-info-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 2.0rem;
}
.loc-info-label {
  font-size: 1.3rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 6px;
}
.loc-info-address {
  font-size: 1.65rem; font-weight: 500; color: var(--white); line-height: 1.65;
}
.loc-info-address span { color: rgba(255,255,255,0.55); font-size: 1.45rem; }

.map-container { margin-bottom: 48px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.map_info_m { display: none; }

.loc-offices { margin-bottom: 56px; }
.loc-table {
  width: 100%; border-collapse: collapse; font-size: 1.5rem;
}
.loc-table th {
  background: var(--navy); color: var(--white);
  font-weight: 600; padding: 16px 24px;
  text-align: left; border: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap; vertical-align: top; min-width: 160px;
}
.loc-table th i { margin-right: 8px; color: var(--gold); }
.loc-table td {
  padding: 16px 24px; border: 1px solid var(--border);
  color: var(--text-dark); line-height: 1.8; vertical-align: top;
}
.loc-table tr:nth-child(even) td { background: var(--cream); }

.loc-global { margin-top: 56px; }
.lg-header { margin-bottom: 28px; }
.lg-header h3 {
  font-family: var(--ff-display);
  font-size: 2.8rem; font-weight: 700; color: var(--navy);
  margin: 10px 0 0; letter-spacing: -0.02em;
}
.loc-table-global th { min-width: 200px; }

/* ============================================================
   28. TRADE PAGES (import / export / quarantine)
   ============================================================ */

/* Intro 2-col */
.trade-intro {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.trade-title {
  font-family: var(--ff-display);
  font-size: 3.6rem; font-weight: 700;
  color: var(--navy); letter-spacing: -0.025em;
  margin: 12px 0 24px;
}
.trade-intro-text p {
  font-size: 1.6rem; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 16px;
}
.trade-intro-img {
  border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-lift);
  aspect-ratio: 4/4;
}
.trade-intro-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Body text */
.trade-body-text {
  margin-bottom: 48px;
}
.trade-body-text p {
  font-size: 1.6rem; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 16px;
}

/* Section block */
.trade-section {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}
.trade-section-title {
  font-family: var(--ff-display);
  font-size: 2.8rem; font-weight: 700;
  color: var(--navy); letter-spacing: -0.02em;
  margin: 10px 0 0;
}
.trade-section-desc {
  font-size: 1.6rem; color: var(--text-muted);
  line-height: 1.85; margin: 20px 0 0;
}

/* OEM image */
.oem-img {
  width: 100%; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-card);
  margin: 36px 0;
}
.oem-img img { width: 100%; display: block; }

/* OEM cards */
.oem-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 8px;
}
.oem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.oem-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
}
.oem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.oem-card-label {
  font-family: var(--ff-display);
  font-size: 2.4rem; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
}
.oem-card-sub {
  font-size: 1.2rem; font-weight: 600;
  color: var(--purple); letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 14px;
}
.oem-card > p {
  font-size: 1.45rem; color: var(--text-muted);
  margin-bottom: 14px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.oem-card ul { padding: 0; margin: 0; }
.oem-card ul li {
  font-size: 1.4rem; color: var(--text-dark);
  padding: 6px 0 6px 18px; position: relative; list-style: none;
  border-bottom: 1px solid var(--border);
}
.oem-card ul li:last-child { border-bottom: none; }
.oem-card ul li::before { content: '▸'; color: var(--purple); position: absolute; left: 0; font-size: 1.1rem; }

/* Q&A */
.qa-list { margin-top: 36px; }
.qa-item {
  margin-bottom: 4px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qa-q {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: var(--cream);
  font-size: 1.6rem; font-weight: 700; color: var(--navy);
  cursor: default;
}
.qa-q span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--purple); color: var(--white);
  border-radius: 50%; font-size: 1.2rem; font-weight: 700;
}
.qa-a {
  padding: 22px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.qa-a p {
  font-size: 1.55rem; color: var(--text-muted);
  line-height: 1.8; margin: 0 0 12px;
}
.qa-a p:last-child { margin-bottom: 0; }
.qa-a ul { padding: 0; margin: 8px 0 12px; }
.qa-a ul li {
  font-size: 1.5rem; color: var(--text-dark);
  padding: 6px 0 6px 20px; position: relative; list-style: none;
  border-bottom: 1px solid var(--border);
}
.qa-a ul li:last-child { border-bottom: none; }
.qa-a ul li::before { content: '▸'; color: var(--purple); position: absolute; left: 0; font-size: 1.1rem; top: 7px; }

/* 3-photo row (trade_export) */
.trade-photo-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px; margin: 40px 0;
}
.tpr-item {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card); aspect-ratio: 4/3;
}
.tpr-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.tpr-item:hover img { transform: scale(1.05); }

/* Full-width image */
.trade-full-img {
  margin-top: 48px; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-card);
}
.trade-full-img img { width: 100%; display: block; }

/* Keyword/service table */
.kw-table-wrap { margin-top: 28px; overflow-x: auto; }
.kw-table {
  width: 100%; border-collapse: collapse; font-size: 1.45rem;
}
.kw-table tr { border-bottom: 1px solid var(--border); }
.kw-table tr:last-child { border-bottom: none; }
.kw-table tr:nth-child(even) { background: var(--cream); }
.kw-table td { padding: 14px 20px; vertical-align: middle; line-height: 1.65; }
.kw-table td.kw-term {
  font-weight: 700; color: var(--navy);
  border-right: 1px solid var(--border);
  min-width: 280px;
}
.kw-table tr:hover td { background: var(--purple-pale); }

/* Quarantine process flow */
.quarantine-flow {
  display: flex; align-items: center;
  gap: 0; margin: 40px 0 56px;
  background: var(--navy); border-radius: var(--radius-md);
  padding: 32px 24px; flex-wrap: wrap; justify-content: center;
  position: relative; overflow: hidden;
}
.quarantine-flow::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.qf-item {
  text-align: center; padding: 12px 20px;
}
.qf-num {
  font-family: var(--ff-display);
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.qf-label {
  font-size: 1.35rem; font-weight: 600;
  color: rgba(255,255,255,0.80);
  white-space: nowrap;
}
.qf-arrow {
  color: var(--gold); font-size: 2.0rem;
  opacity: 0.50; padding: 0 4px;
  flex-shrink: 0;
}

/* ============================================================
   29. RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .ci-grid { grid-template-columns: 1fr 300px; gap: 40px; }
  .trade-intro { grid-template-columns: 1fr 320px; gap: 40px; }
}

@media (max-width: 1024px) {
  .sub_service_img { height: 300px; margin-top: 68px; }
  .ci-grid { grid-template-columns: 1fr; }
  .ci-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .trade-intro { grid-template-columns: 1fr; }
  .trade-intro-img { max-width: 100%; aspect-ratio: 16/7; }
  .oem-cards { grid-template-columns: 1fr; }
  .trade-photo-row { grid-template-columns: 1fr 1fr; }
  .map_info { display: none; }
  .map_info_m { display: block; }
  .quarantine-flow { gap: 0; }
  .conduct-table { font-size: 1.25rem; }
  .conduct-table thead th,
  .conduct-table tbody td { padding: 10px 10px; }
}

@media (max-width: 768px) {
  .sub_service_img { height: 220px; }
  .sp-header .section-title { font-size: 2.6rem; }
  .trade-title { font-size: 2.6rem; }
  .trade-photo-row { grid-template-columns: 1fr; }
  .oem-cards { grid-template-columns: 1fr; }
  .ci-sidebar { grid-template-columns: 1fr; }
  .loc-table th { min-width: 100px; font-size: 1.35rem; }
  .loc-table td { font-size: 1.35rem; }
  .loc-table-global th { min-width: 120px; }
  .quarantine-flow { flex-direction: column; gap: 8px; }
  .qf-arrow { transform: rotate(90deg); }
  .kw-table-wrap { font-size: 1.3rem; }
  .kw-table td.kw-term { min-width: 180px; }
}

@media (max-width: 640px) {
  .loc-info-card { flex-direction: column; padding: 22px 20px; }
  .ci-grid, .trade-intro { gap: 28px; }
  .qa-q { font-size: 1.45rem; }
  .trade-section-title { font-size: 2.2rem; }
  .conduct-table { font-size: 1.15rem; }
}

/* ============================================================
   30. MISSION.PHP — 6 Value Cards
   ============================================================ */

.mission-header {
  text-align: center;
  margin-bottom: 64px;
}
.mission-main-title {
  font-family: var(--ff-display);
  font-size: 3.6rem; font-weight: 700;
  color: var(--navy); letter-spacing: -0.025em;
  line-height: 1.2; margin: 12px 0 16px;
}
.mission-main-sub {
  font-size: 1.7rem; color: var(--text-muted); line-height: 1.65;
}

/* 3-col grid, 2 rows */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

.mission-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px 36px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.mission-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(94,26,132,0.18);
}
.mission-card:hover::before { transform: scaleX(1); }

/* Large bg number */
.mc-number {
  font-family: var(--ff-display);
  font-size: 8.0rem; font-weight: 700;
  color: rgba(94,26,132,0.06);
  line-height: 1;
  position: absolute; top: 16px; right: 24px;
  letter-spacing: -0.04em;
  transition: color 0.35s;
  pointer-events: none;
}
.mission-card:hover .mc-number { color: rgba(94,26,132,0.10); }

/* English keyword */
.mc-en {
  font-family: var(--ff-display);
  font-size: 2.6rem; font-weight: 700;
  color: var(--purple);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 8px;
  position: relative; z-index: 1;
}

/* Korean subtitle */
.mc-ko {
  font-size: 1.35rem; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: none;
  position: relative; z-index: 1;
}

/* Gold divider */
.mc-divider {
  width: 36px; height: 2.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 20px 0;
  transition: width 0.35s var(--ease);
}
.mission-card:hover .mc-divider { width: 64px; }

/* Description */
.mc-desc {
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1.85;
  flex: 1;
  position: relative; z-index: 1;
  margin: 0;
}

/* Background icon */
.mc-icon {
  position: absolute;
  bottom: 20px; right: 24px;
  font-size: 4.8rem;
  color: rgba(94,26,132,0.05);
  transition: color 0.35s, transform 0.35s var(--ease);
  pointer-events: none;
  line-height: 1;
}
.mission-card:hover .mc-icon {
  color: rgba(94,26,132,0.09);
  transform: scale(1.12) rotate(-5deg);
}

/* Closing banner */
.mission-closing {
  background: var(--navy);
  border-radius: 20px;
  padding: 52px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.mission-closing::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(94,26,132,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.mission-closing::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.mission-closing p {
  font-family: var(--ff-display);
  font-size: 2.0rem; font-weight: 600;
  color: var(--white); line-height: 1.75;
  position: relative; margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .mission-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .mission-main-title { font-size: 2.8rem; }
}
@media (max-width: 640px) {
  .mission-grid { grid-template-columns: 1fr; }
  .mission-card { padding: 32px 24px 28px; }
  .mc-en { font-size: 2.2rem; }
  .mission-closing { padding: 36px 24px; }
  .mission-closing p { font-size: 1.7rem; }
}

/* ============================================================
   31. TRADE_IMPORT.PHP — Detail Cards + HS Code Grid
   ============================================================ */

/* 4 service detail cards */
.ti-detail-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.ti-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.ti-detail-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.ti-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.ti-detail-card:hover::before { transform: scaleX(1); }

.ti-detail-icon {
  width: 48px; height: 48px;
  background: var(--purple-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.0rem; color: var(--purple);
  margin-bottom: 18px;
  transition: background 0.3s, color 0.3s;
}
.ti-detail-card:hover .ti-detail-icon {
  background: var(--purple);
  color: var(--white);
}

.ti-detail-card h4 {
  font-family: var(--ff-display);
  font-size: 1.9rem; font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.3;
}
.ti-detail-card p {
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

/* HS Code grid — pill-style clickable items */
.hs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.hs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s, border-color 0.25s;
  text-align: center;
}
.hs-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  background: var(--purple);
  border-color: var(--purple);
}
.hs-item:hover .hs-num { color: var(--gold-light); }
.hs-item:hover .hs-name { color: rgba(255,255,255,0.85); }

.hs-num {
  font-family: var(--ff-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--purple);
  line-height: 1;
  transition: color 0.25s;
}
.hs-name {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.3;
  transition: color 0.25s;
}

/* Responsive */
@media (max-width: 1200px) {
  .hs-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 1024px) {
  .ti-detail-cards { grid-template-columns: 1fr; }
  .hs-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .hs-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hs-item { padding: 10px 6px; }
  .hs-num { font-size: 1.4rem; }
  .hs-name { font-size: 1.1rem; }
}

/* ============================================================
   32. TRADE_EXPORT.PHP — HS Detail Table
   ============================================================ */

.hs-detail-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  margin-top: 28px;
}

.hs-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.45rem;
  font-family: var(--ff-body);
}

/* Group header rows (category titles with links) */
.hs-detail-table tr.hs-group-header td {
  background: var(--navy-mid);
  padding: 14px 22px;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hs-detail-table tr.hs-group-header td a {
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.hs-detail-table tr.hs-group-header td a::before {
  content: '▸';
  color: var(--gold-light);
  font-size: 1.2rem;
}
.hs-detail-table tr.hs-group-header td a:hover {
  color: var(--gold-light);
}

/* Category code cells */
.hs-detail-table td.hs-cat {
  background: var(--purple-pale);
  color: var(--purple);
  font-weight: 600;
  font-size: 1.35rem;
  padding: 11px 22px;
  border-bottom: 1px solid var(--border);
  border-right: 2px solid rgba(94,26,132,0.15);
  white-space: nowrap;
  vertical-align: middle;
}

/* Description cells */
.hs-detail-table td:not(.hs-cat):not([colspan]) {
  padding: 11px 22px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
  line-height: 1.65;
  vertical-align: middle;
}

/* Row hover */
.hs-detail-table tr:not(.hs-group-header):hover td {
  background: rgba(94,26,132,0.03);
}
.hs-detail-table tr:not(.hs-group-header):hover td.hs-cat {
  background: rgba(94,26,132,0.10);
}

@media (max-width: 768px) {
  .hs-detail-table { font-size: 1.3rem; }
  .hs-detail-table td { padding: 10px 14px; }
  .hs-detail-table td.hs-cat { font-size: 1.25rem; }
  .hs-detail-table tr.hs-group-header td { font-size: 1.4rem; padding: 12px 16px; }
}

/* ============================================================
   TRADE PAGES — ENHANCED PROFESSIONAL STYLES
   Add these to infodu.css (append at end)
   ============================================================ */

/* ── Hero stat ribbon ────────────────────────────────────── */
.trade-hero-ribbon {
  display: flex;
  gap: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 40px 0 56px;
  box-shadow: var(--shadow-lift);
  position: relative;
}
.trade-hero-ribbon::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.thr-item {
  flex: 1;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.thr-item:last-child { border-right: none; }
.thr-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1;
}
.thr-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
}
.thr-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.45;
}

/* ── Intro block with accent bar ──────────────────────────── */
.trade-intro-block {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.trade-intro-block .tib-text { }
.trade-intro-block .tib-text h2 {
  font-family: var(--ff-display);
  font-size: 3.4rem; font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin: 0 0 8px;
  line-height: 1.2;
}
.trade-intro-block .tib-text .tib-en {
  font-size: 1.2rem; font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: block;
}
.trade-intro-block .tib-text p {
  font-size: 1.6rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.trade-intro-block .tib-text p strong { color: var(--navy); font-weight: 700; }

.tib-image {
  border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-lift);
  aspect-ratio: 4/4;
}

.tib-image img {
  width: 100%; height: 100%; object-fit: cover; display: block; 
}

/* ── Service feature cards ────────────────────────────────── */
.srv-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 36px 0 48px;
}
.sfg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.sfg-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.sfg-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(94,26,132,0.15);
}
.sfg-card:hover::before { transform: scaleX(1); }
.sfg-icon {
  width: 52px; height: 52px;
  background: var(--purple-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: var(--purple);
  margin-bottom: 18px;
  transition: background 0.3s, color 0.3s, border-radius 0.3s;
}
.sfg-card:hover .sfg-icon {
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
}
.sfg-title {
  font-family: var(--ff-display);
  font-size: 1.75rem; font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}
.sfg-sub {
  font-size: 1.25rem; font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.sfg-card p {
  font-size: 1.45rem; color: var(--text-muted);
  line-height: 1.75; margin: 0;
}
.sfg-card ul {
  padding: 0; margin: 12px 0 0;
}
.sfg-card ul li {
  font-size: 1.4rem; color: var(--text-dark);
  padding: 6px 0 6px 18px; position: relative;
  list-style: none; border-bottom: 1px solid var(--border);
  line-height: 1.65;
}
.sfg-card ul li:last-child { border-bottom: none; }
.sfg-card ul li::before {
  content: '▸'; color: var(--purple);
  position: absolute; left: 0; top: 7px; font-size: 1.1rem;
}

/* ── Photo mosaic row ────────────────────────────────────── */
.trade-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
  margin: 48px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.tm-main {
  grid-row: 1 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.tm-side {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.tm-main img, .tm-side img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.tm-main:hover img, .tm-side:hover img { transform: scale(1.05); }

/* ── Section title with gold accent ──────────────────────── */
.trade-section-head {
  margin: 0 0 36px;
}
.trade-section-head .tsh-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 1.2rem; font-weight: 700;
  color: var(--purple); letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--purple-pale);
  padding: 5px 16px; border-radius: 20px;
  margin-bottom: 14px;
}
.trade-section-head h2 {
  font-family: var(--ff-display);
  font-size: 3.0rem; font-weight: 700;
  color: var(--navy) !important;
  letter-spacing: -0.02em;
  margin: 0 0 14px !important;
  line-height: 1.2;
}
.trade-section-head h2 em {
  font-style: normal; color: var(--purple);
}
.trade-section-head .tsh-accent {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

/* ── Step process blocks ─────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 36px 0 48px;
  background: var(--navy);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.ps-item {
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: background 0.25s;
}
.ps-item:last-child { border-right: none; }
.ps-item:hover { background: rgba(255,255,255,0.04); }
.ps-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 50%; font-size: 1.4rem; font-weight: 800;
  margin: 0 auto 12px;
}
.ps-icon {
  font-size: 2.0rem; color: rgba(255,255,255,0.35);
  margin-bottom: 8px; display: block;
}
.ps-label {
  font-size: 1.3rem; font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}
.ps-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.40);
  margin-top: 6px; line-height: 1.4;
}

/* ── KC cert type cards ──────────────────────────────────── */
.kc-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0 48px;
}
.kc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.kc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s var(--ease);
}
.kc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.kc-card:hover::after { transform: scaleX(1); }
.kc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--purple-pale); color: var(--purple);
  font-size: 1.1rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 14px;
}
.kc-card h4 {
  font-family: var(--ff-display);
  font-size: 1.75rem; font-weight: 700;
  color: var(--navy); margin: 0 0 8px;
}
.kc-card .kc-target {
  font-size: 1.25rem; color: var(--text-muted);
  margin-bottom: 14px; display: block;
}
.kc-card ul { padding: 0; margin: 0; }
.kc-card ul li {
  font-size: 1.4rem; color: var(--text-dark);
  padding: 6px 0 6px 18px; position: relative;
  list-style: none; border-bottom: 1px solid var(--border);
  line-height: 1.6;
}
.kc-card ul li:last-child { border-bottom: none; }
.kc-card ul li::before {
  content: '▸'; color: var(--purple);
  position: absolute; left: 0; font-size: 1.0rem; top: 7px;
}
.kc-card .kc-risk {
  margin-top: 14px;
  background: rgba(200,168,75,0.08);
  border: 1px solid rgba(200,168,75,0.20);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 1.3rem; color: #7a5c00;
  display: flex; gap: 8px; align-items: flex-start;
}
.kc-card .kc-risk i { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* ── OEM step timeline ───────────────────────────────────── */
.oem-timeline {
  position: relative;
  margin: 36px 0 48px;
  padding-left: 40px;
}
.oem-timeline::before {
  content: '';
  position: absolute; left: 13px; top: 24px;
  bottom: 24px; width: 2px;
  background: linear-gradient(to bottom, var(--purple), var(--gold));
}
.otl-item {
  position: relative;
  margin-bottom: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.otl-item:last-child { margin-bottom: 0; }
.otl-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(94,26,132,0.18);
}
.otl-dot {
  position: absolute;
  left: -53px; top: 26px;
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%; border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: var(--navy);
}
.otl-step {
  font-size: 1.15rem; font-weight: 700;
  color: var(--purple); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 6px;
}
.otl-item h4 {
  font-family: var(--ff-display);
  font-size: 1.7rem; font-weight: 700;
  color: var(--navy); margin: 0 0 12px;
}
.otl-item ul { padding: 0; margin: 0; }
.otl-item ul li {
  font-size: 1.45rem; color: var(--text-dark);
  padding: 5px 0 5px 18px; position: relative;
  list-style: none;
}
.otl-item ul li::before {
  content: '▸'; color: var(--purple);
  position: absolute; left: 0; font-size: 1.1rem; top: 6px;
}

/* ── Parallel import checklist ────────────────────────────── */
.parallel-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0 48px;
}
.plc-group {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.plc-group-header {
  padding: 18px 22px;
  font-family: var(--ff-display);
  font-size: 1.55rem; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.plc-group.ok .plc-group-header {
  background: #064e3b;
  color: #6ee7b7;
}
.plc-group.warn .plc-group-header {
  background: #7f1d1d;
  color: #fca5a5;
}
.plc-group-body {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border); border-top: none;
}
.plc-group-body ul { padding: 0; margin: 0; }
.plc-group-body ul li {
  font-size: 1.45rem; color: var(--text-dark);
  padding: 8px 0 8px 22px; position: relative;
  list-style: none; border-bottom: 1px solid var(--border);
  line-height: 1.65;
}
.plc-group-body ul li:last-child { border-bottom: none; }
.plc-group.ok .plc-group-body ul li::before {
  content: '✓'; color: #059669;
  position: absolute; left: 0; font-weight: 800;
}
.plc-group.warn .plc-group-body ul li::before {
  content: '⚠'; color: #dc2626;
  position: absolute; left: 0; font-size: 1.1rem;
}

/* ── Strength badge grid ─────────────────────────────────── */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 48px;
}
.str-item {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.str-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.str-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.str-icon {
  font-size: 2.4rem; color: var(--gold);
  margin-bottom: 10px; line-height: 1;
}
.str-text {
  font-size: 1.4rem; font-weight: 500;
  color: rgba(255,255,255,0.80);
  line-height: 1.55;
}

/* ── China trade highlight ───────────────────────────────── */
.china-highlight-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, rgba(94,26,132,0.3) 100%);
  border-radius: var(--radius-md);
  padding: 40px 44px;
  margin: 40px 0 48px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.china-highlight-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.china-highlight-box::after {
  content: '中';
  position: absolute; right: -10px; bottom: -30px;
  font-size: 14rem; font-weight: 900;
  color: rgba(255,255,255,0.03);
  font-family: var(--ff-display);
  line-height: 1;
  pointer-events: none;
}
.chb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.chb-item { text-align: center; }
.chb-num {
  font-family: var(--ff-display);
  font-size: 3.4rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.chb-label {
  font-size: 1.35rem; font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.chb-sub {
  font-size: 1.2rem; color: rgba(255,255,255,0.40);
  margin-top: 3px;
}

/* ── Logistics mode cards ────────────────────────────────── */
.logistics-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0 0 40px;
}
.lc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.lc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.lc-card-header {
  background: var(--navy);
  padding: 24px 24px 20px;
  position: relative; overflow: hidden;
}
.lc-card-header::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.lc-card-icon {
  font-size: 3.0rem; color: var(--gold);
  margin-bottom: 10px; line-height: 1;
}
.lc-card-title {
  font-family: var(--ff-display);
  font-size: 1.9rem; font-weight: 700; color: var(--white);
  margin: 0 0 4px;
}
.lc-card-subtitle {
  font-size: 1.2rem; color: rgba(255,255,255,0.50);
  letter-spacing: 0.06em;
}
.lc-card-body {
  padding: 22px 24px;
}
.lc-card-body ul { padding: 0; margin: 0; }
.lc-card-body ul li {
  font-size: 1.45rem; color: var(--text-dark);
  padding: 8px 0 8px 20px; position: relative;
  list-style: none; border-bottom: 1px solid var(--border);
  line-height: 1.65;
}
.lc-card-body ul li:last-child { border-bottom: none; }
.lc-card-body ul li::before {
  content: '▸'; color: var(--purple);
  position: absolute; left: 0; font-size: 1.1rem; top: 9px;
}

/* ── Quarantine flow timeline ────────────────────────────── */
.quarantine-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 36px 0 48px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.qp-step {
  padding: 28px 16px;
  text-align: center;
  background: var(--white);
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.25s;
}
.qp-step:last-child { border-right: none; }
.qp-step:hover { background: var(--purple-pale); }
.qp-step:hover .qp-num { background: var(--purple); color: var(--white); }
.qp-step::after {
  content: '›';
  position: absolute; right: -12px; top: 50%;
  transform: translateY(-50%);
  font-size: 2.0rem; color: var(--border);
  z-index: 2; font-weight: 300;
}
.qp-step:last-child::after { display: none; }
.qp-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--purple-pale);
  color: var(--purple);
  border-radius: 50%; font-size: 1.4rem; font-weight: 800;
  margin: 0 auto 12px;
  transition: background 0.25s, color 0.25s;
}
.qp-icon {
  font-size: 2.2rem; color: var(--purple);
  margin-bottom: 10px; display: block; opacity: 0.65;
}
.qp-label {
  font-size: 1.3rem; font-weight: 700;
  color: var(--navy);
}
.qp-sub {
  font-size: 1.1rem; color: var(--text-muted);
  margin-top: 5px; line-height: 1.4;
}

/* ── Risk alert box ──────────────────────────────────────── */
.risk-alert {
  display: flex; gap: 18px; align-items: flex-start;
  background: rgba(220,38,38,0.04);
  border: 1px solid rgba(220,38,38,0.15);
  border-left: 4px solid #dc2626;
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin: 28px 0;
}
.risk-alert .ra-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(220,38,38,0.10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #dc2626;
}
.risk-alert .ra-text {
  font-size: 1.5rem; color: var(--text-dark); line-height: 1.75;
}
.risk-alert .ra-text strong { color: #b91c1c; }

/* ── Info note box ────────────────────────────────────────── */
.info-note {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}
.info-note .in-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--navy);
}
.info-note .in-text {
  font-size: 1.5rem; color: var(--navy); line-height: 1.7;
}
.info-note .in-text strong { color: var(--purple); }

/* ── Closing CTA banner ──────────────────────────────────── */
.trade-closing-banner {
  background: var(--navy);
  border-radius: 20px;
  padding: 52px 60px;
  text-align: center;
  position: relative; overflow: hidden;
  margin-top: 56px;
  box-shadow: var(--shadow-lift);
}
.trade-closing-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(94,26,132,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.trade-closing-banner::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.tcb-rule {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; margin: 0 auto 28px;
}
.trade-closing-banner p {
  position: relative;
  font-family: var(--ff-display);
  font-size: 2.0rem; font-weight: 600;
  color: var(--white); line-height: 1.7; margin-bottom: 12px;
}
.trade-closing-banner p.sub {
  font-family: var(--ff-body);
  font-size: 1.5rem; font-weight: 400;
  color: rgba(255,255,255,0.50); margin-bottom: 0;
}
.trade-closing-banner .tcb-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-size: 1.5rem; font-weight: 700;
  padding: 15px 34px; border-radius: var(--radius-sm);
  margin-top: 28px; position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
}
.trade-closing-banner .tcb-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200,168,75,0.35);
  color: var(--navy);
}

/* ── Dividers ─────────────────────────────────────────────── */
.trade-divider {
  display: block; width: 100%; height: 1px;
  background: var(--border);
  margin: 56px 0;
}
.trade-divider-gold {
  display: block; width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 32px 0;
}

/* ============================================================
   CUSTOMS CLEARANCE PAGE — cc-region-grid
   ============================================================ */

.cc-region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

/* Region card */
.cc-region-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.cc-region-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

/* World card spans full width on last row */
.cc-region-card--world {
  grid-column: 1 / -1;
}

/* Card header */
.cc-region-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px 16px;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
}
.cc-region-icon {
  width: 44px; height: 44px;
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; color: var(--gold);
  flex-shrink: 0;
}
.cc-region-icon--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border: none;
}
.cc-region-title {
  font-family: var(--ff-display);
  font-size: 1.75rem; font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.cc-region-count {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}

/* Link list */
.cc-link-list {
  padding: 8px 0;
  margin: 0;
  flex: 1;
}
.cc-link-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.18s;
  list-style: none;
}
.cc-link-list li:last-child { border-bottom: none; }
.cc-link-list li:hover { background: var(--purple-pale); }
.cc-flag {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}
.cc-link-list a {
  font-size: 1.4rem;
  color: var(--text-dark);
  flex: 1;
  transition: color 0.2s;
  line-height: 1.5;
  text-decoration: none;
}
.cc-link-list li:hover a { color: var(--purple); }
.cc-ext {
  font-size: 1.0rem;
  color: var(--text-muted);
  opacity: 0;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.cc-link-list li:hover .cc-ext { opacity: 1; color: var(--purple); }

/* World note */
.cc-world-note {
  margin: 0 20px 20px;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.cc-world-note i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* World card horizontal link list */
.cc-region-card--world .cc-link-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 12px 16px 0;
  gap: 0;
}
.cc-region-card--world .cc-link-list li {
  flex: 1 1 300px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin: 6px;
  padding: 12px 16px;
}
.cc-region-card--world .cc-link-list li:last-child { border-bottom: 1px solid var(--border); }

/* Responsive */
@media (max-width: 1200px) {
  .cc-region-grid { grid-template-columns: repeat(2, 1fr); }
  .cc-region-card--world { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .cc-region-grid { grid-template-columns: 1fr; }
  .cc-region-card--world { grid-column: 1; }
}


/* ============================================================
   REVISED Q&A — SUBDUED STYLE
   Replaces .qa-refined with quiet, professional tones
   Uses existing .qa-list / .qa-item class names from CSS
   ============================================================ */

/* Override the bright .qa-refined with a muted version */
.qa-refined .qa-item {
  margin-bottom: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: none;
  transition: border-color 0.2s;
}
.qa-refined .qa-item:hover {
  border-color: rgba(94,26,132,0.18);
  box-shadow: none;
}

/* Question row — muted cream, no gradient */
.qa-refined .qa-q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  cursor: default;
}
.qa-refined .qa-q .q-badge {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  font-size: 1.1rem; font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  letter-spacing: 0;
}
.qa-refined .qa-q .q-text {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  flex: 1;
}

/* Answer area — plain white, no left-padding trick */
.qa-refined .qa-a {
  padding: 18px 22px 18px 64px;
  background: var(--white);
}

/* Answer lead — plain text, no ::before pseudo circle */
.qa-refined .qa-a .a-lead {
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.7;
  padding-left: 0;
  position: static;
}
.qa-refined .qa-a .a-lead::before {
  display: none; /* remove the gold circle */
}

/* Prefix the lead with a subtle "A." text label */
.qa-refined .qa-a .a-lead::after {
  display: none;
}

/* Answer list */
.qa-refined .qa-a ul {
  padding: 0; margin: 0;
}
.qa-refined .qa-a ul li {
  font-size: 1.45rem;
  color: var(--text-muted);
  padding: 6px 0 6px 18px;
  position: relative;
  list-style: none;
  border-bottom: 1px solid var(--border);
  line-height: 1.7;
}
.qa-refined .qa-a ul li:last-child { border-bottom: none; }
.qa-refined .qa-a ul li::before {
  content: '–';
  color: var(--text-muted);
  position: absolute; left: 0;
  font-size: 1.2rem;
  top: 6px;
}

/* Nested info-note inside Q&A — smaller */
.qa-refined .qa-a .info-note {
  margin: 12px 0 0;
  padding: 14px 18px;
  font-size: 1.4rem;
}
.qa-refined .qa-a .info-note .in-icon {
  width: 32px; height: 32px;
  font-size: 1.3rem;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .trade-intro-block { grid-template-columns: 1fr 320px; gap: 40px; }
  .srv-feature-grid { grid-template-columns: 1fr 1fr; }
  .kc-type-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .quarantine-process { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .trade-intro-block { grid-template-columns: 1fr; }
  .tib-image { max-width: 100%; }
  .trade-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .tm-main { grid-row: 1; grid-column: 1 / -1; height: 240px; }
  .logistics-cards { grid-template-columns: 1fr; }
  .kc-type-grid { grid-template-columns: 1fr; }
  .chb-grid { grid-template-columns: 1fr 1fr 1fr; }
  .parallel-checklist { grid-template-columns: 1fr; }
  .strength-grid { grid-template-columns: 1fr 1fr; }
  .quarantine-process { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .trade-intro-block { gap: 28px; }
  .trade-intro-block .tib-text h2 { font-size: 2.6rem; }
  .srv-feature-grid { grid-template-columns: 1fr; }
  .trade-hero-ribbon { flex-direction: column; }
  .thr-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .thr-item:last-child { border-bottom: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .strength-grid { grid-template-columns: 1fr; }
  .chb-grid { grid-template-columns: 1fr; gap: 20px; }
  .quarantine-process { grid-template-columns: 1fr 1fr; }
  .trade-closing-banner { padding: 36px 24px; }
  .trade-closing-banner p { font-size: 1.7rem; }
  .oem-timeline { padding-left: 32px; }
  .otl-dot { left: -43px; }
}
@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr; }
  .quarantine-process { grid-template-columns: 1fr; }
  .qp-step::after { display: none; }
  .trade-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .tm-main { height: 200px; }
  .tm-side { height: 180px; }
}

/* ============================================================
   33. INDUSTRY PAGES — Shared components
   ============================================================ */

/* Industry intro 2-col */
.industry-intro {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.industry-intro-text h2 {
  font-family: var(--ff-display);
  font-size: 3.2rem; font-weight: 700;
  color: var(--navy); letter-spacing: -0.025em;
  margin: 0 0 10px; line-height: 1.2;
}
.industry-intro-text .ind-subtitle {
  font-size: 1.4rem; font-weight: 600;
  color: var(--purple); letter-spacing: 0.06em;
  margin-bottom: 22px; display: block;
}
.industry-intro-text p {
  font-size: 1.6rem; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 16px;
}
.industry-intro-img {
  border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-lift);
  aspect-ratio: 4/4;
}
.industry-intro-img img { width:100%; height:100%; object-fit:cover; display:block; transition: transform 0.5s ease; }
.industry-intro-img:hover img { transform: scale(1.04); }

/* Body paragraph block */
.industry-body {
  margin-bottom: 40px;
}
.industry-body p {
  font-size: 1.6rem; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 16px;
}
.industry-body p strong { color: var(--navy); font-weight: 700; }

/* Bullet list with styled items */
.industry-bullet-list {
  padding: 0; margin: 0 0 28px;
}
.industry-bullet-list li {
  font-size: 1.55rem; color: var(--text-dark);
  padding: 10px 0 10px 24px; position: relative;
  list-style: none; border-bottom: 1px solid var(--border);
  line-height: 1.75;
}
.industry-bullet-list li:last-child { border-bottom: none; }
.industry-bullet-list li::before {
  content: '▸'; color: var(--purple);
  position: absolute; left: 0; font-size: 1.1rem; top: 12px;
}

/* Process flow inline */
.industry-flow {
  font-size: 1.5rem; color: var(--text-muted);
  line-height: 1.8; margin: 20px 0 28px;
  padding: 22px 28px;
  background: var(--cream);
  border-left: 4px solid var(--purple);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.industry-flow strong { color: var(--navy); font-weight: 700; }

/* Section heading (h2 in content) */
.industry-section-title {
  font-family: var(--ff-display);
  font-size: 2.6rem; font-weight: 700;
  color: var(--navy); letter-spacing: -0.02em;
  margin: 0 0 8px; line-height: 1.2;
}
.ind-section-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; margin-bottom: 28px;
}

/* ── KC checklist layout ─────────────────────────────────── */
.kc-checklist-section {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.kc-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
.kc-check-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.kc-check-card-header {
  padding: 18px 22px;
  font-family: var(--ff-display);
  font-size: 1.6rem; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.kc-check-card.check .kc-check-card-header { background: var(--navy); color: var(--gold); }
.kc-check-card.list  .kc-check-card-header { background: var(--purple); color: var(--gold-light); }
.kc-check-card.dual  .kc-check-card-header { background: #7f1d1d; color: #fca5a5; }
.kc-check-card.docs  .kc-check-card-header { background: #064e3b; color: #6ee7b7; }
.kc-check-card.scope .kc-check-card-header { background: var(--navy-mid); color: var(--gold-light); }
.kc-check-card.summary .kc-check-card-header { background: linear-gradient(135deg, var(--purple), var(--navy)); color: var(--gold-light); }
.kc-check-card-body {
  padding: 16px 22px;
}
.kc-check-card-body p {
  font-size: 1.45rem; color: var(--text-muted);
  margin: 0 0 12px; line-height: 1.7;
}
.kc-check-card-body ul { padding: 0; margin: 0; }
.kc-check-card-body ul li {
  font-size: 1.4rem; color: var(--text-dark);
  padding: 7px 0 7px 20px; position: relative;
  list-style: none; border-bottom: 1px solid var(--border);
  line-height: 1.65;
}
.kc-check-card-body ul li:last-child { border-bottom: none; }
.kc-check-card-body ul li::before {
  content: '✓'; color: var(--purple);
  position: absolute; left: 0; font-size: 1.1rem; top: 7px; font-weight: 700;
}
.kc-check-card.list  .kc-check-card-body ul li::before,
.kc-check-card.dual  .kc-check-card-body ul li::before { content: '▸'; color: var(--purple); }
.kc-check-card.docs  .kc-check-card-body ul li::before { content: '✦'; color: #059669; }
.kc-check-card.scope .kc-check-card-body ul li::before { content: '◆'; color: var(--gold); }
.kc-check-card.summary .kc-check-card-body ul li::before { content: '→'; color: var(--purple); }
.kc-check-card-body .kc-note {
  margin-top: 12px; padding: 10px 14px;
  background: rgba(200,168,75,0.08);
  border: 1px solid rgba(200,168,75,0.20);
  border-radius: var(--radius-sm);
  font-size: 1.35rem; color: #7a5c00; line-height: 1.6;
}
.kc-check-card.dual { grid-column: 1 / -1; }
.kc-check-card.docs { grid-column: 1 / -1; }

/* full-width variants */
.kc-check-card.scope { }
.kc-check-card.summary { grid-column: 1 / -1; }

/* ── Industry info table (documents required, HS codes, etc.) ── */
.industry-table-wrap { overflow-x: auto; margin-top: 28px; }
.industry-table {
  width: 100%; border-collapse: collapse;
  font-size: 1.45rem; font-family: var(--ff-body);
}
.industry-table thead th {
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 1.4rem;
  padding: 15px 20px; text-align: left;
  border: 1px solid rgba(255,255,255,0.08);
  vertical-align: middle;
}
.industry-table tbody td {
  padding: 13px 20px;
  border: 1px solid var(--border);
  vertical-align: top; line-height: 1.7;
  color: var(--text-dark);
}
.industry-table tbody td.td-label {
  background: var(--purple-pale);
  color: var(--purple); font-weight: 700;
  white-space: nowrap; vertical-align: middle;
}
.industry-table tbody td.td-code {
  font-family: 'Courier New', monospace;
  font-size: 1.35rem; font-weight: 700;
  color: var(--navy); background: var(--cream);
}
.industry-table tbody tr:hover td { background: rgba(94,26,132,0.03); }
.industry-table tbody tr:hover td.td-label { background: rgba(94,26,132,0.12); }
.industry-table tbody tr:hover td.td-code { background: rgba(200,168,75,0.08); }
.industry-table tbody td[rowspan] {
  background: var(--navy-mid); color: var(--gold);
  font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700;
  text-align: center; vertical-align: middle;
}

/* ── Image row inside content (cosmetic page) ─────────────── */
.industry-img-row {
  margin: 36px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.industry-img-row img { width: 100%; display: block; }

/* ── Cosmetic docs required list ──────────────────────────── */
.cosm-doc-list {
  margin-top: 28px;
}
.cosm-doc-item {
  margin-bottom: 4px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.cosm-doc-title {
  background: var(--navy);
  padding: 15px 22px;
  font-family: var(--ff-display);
  font-size: 1.55rem; font-weight: 700;
  color: var(--gold);
  display: flex; align-items: center; gap: 10px;
}
.cosm-doc-title::before { content: '📄'; font-size: 1.3rem; }
.cosm-doc-body {
  padding: 16px 22px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.cosm-doc-body p {
  font-size: 1.45rem; color: var(--text-muted);
  line-height: 1.75; margin: 0 0 8px;
}
.cosm-doc-body p:last-child { margin-bottom: 0; }

/* ── Wine variety table — special cols ───────────────────── */
.wine-variety-table td:nth-child(1) {
  background: var(--purple-pale);
  color: var(--purple); font-weight: 700;
  text-align: center; vertical-align: middle;
  white-space: nowrap;
}
.wine-variety-table td:nth-child(2) {
  background: var(--cream);
  font-weight: 700; color: var(--navy);
  white-space: nowrap;
}

/* ── Chemical hazard category cards ──────────────────────── */
.hazard-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 28px;
}
.hazard-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.hazard-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.hazard-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.hazard-card:hover::before { transform: scaleX(1); }
.hazard-card-label {
  font-family: var(--ff-display);
  font-size: 1.65rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.hazard-card p {
  font-size: 1.4rem; color: var(--text-muted);
  line-height: 1.7; margin: 0;
}

/* ============================================================
   RESPONSIVE — industry pages
   ============================================================ */
@media (max-width: 1200px) {
  .industry-intro { grid-template-columns: 1fr 300px; gap: 40px; }
  .kc-check-grid { grid-template-columns: 1fr; }
  .kc-check-card.dual,
  .kc-check-card.docs,
  .kc-check-card.summary { grid-column: 1; }
  .hazard-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .industry-intro { grid-template-columns: 1fr; }
  .industry-intro-img { max-width: 100%; aspect-ratio: 16/7; }
  .hazard-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .industry-section-title { font-size: 2.2rem; }
  .hazard-cards { grid-template-columns: 1fr; }
  .industry-table { font-size: 1.3rem; }
  .industry-table tbody td,
  .industry-table thead th { padding: 10px 14px; }
}

/* ============================================================
   34. INDUSTRY PAGES — Additional components
   (Append to end of infodu.css, after section 33 responsive block)
   ============================================================ */

/* ── Food doc grid (식품 필요서류) ──────────────────────────── */
.food-doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.food-doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.food-doc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.food-doc-card--wide {
  grid-column: 1 / -1;
}
.fdc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  background: var(--navy);
}
.fdc-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 36px;
  flex-shrink: 0;
}
.fdc-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}
.fdc-title small {
  display: block;
  font-family: var(--ff-body);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-top: 3px;
}
.fdc-list {
  list-style: none;
  padding: 16px 22px;
  margin: 0;
}
.fdc-list li {
  font-size: 1.45rem;
  color: var(--text-dark);
  line-height: 1.75;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 20px;
  position: relative;
}
.fdc-list li:last-child { border-bottom: none; }
.fdc-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}

/* ── Copper grade cards ──────────────────────────────────── */
.copper-grade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}
.copper-grade-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.copper-grade-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.cgc-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.cgc-label {
  font-family: var(--ff-body);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* ── Urchin problem cards ────────────────────────────────── */
.urchin-problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}
.urchin-problem-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #fff7f7;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  font-weight: 600;
  color: #7f1d1d;
}
.upc-icon {
  font-size: 1.6rem;
  color: #dc2626;
}

/* ── Responsive additions ────────────────────────────────── */
@media (max-width: 1200px) {
  .copper-grade-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .food-doc-grid { grid-template-columns: 1fr; }
  .food-doc-card--wide { grid-column: 1; }
  .copper-grade-grid { grid-template-columns: 1fr 1fr; }
  .urchin-problem-grid { flex-direction: column; }
}
@media (max-width: 480px) {
  .copper-grade-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INDEX PAGE ADDITIONS — append to infodu.css
   Sections: Shortcut Tabs, Visitor Counter, News+SNS Board
   ============================================================ */

/* ============================================================
   A. 주요 서비스 바로가기 / 패밀리 사이트 (replaces character section)
   ============================================================ */

#main_shortcut {
  padding: 60px 0 0;
  background: var(--white);
}

/* Tab header */
.shortcut-tab-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
}

.shortcut-tab {
  padding: 14px 32px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: -0.01em;
  font-family: var(--ff-body);
}
.shortcut-tab:hover { color: var(--navy); }
.shortcut-tab.active {
  color: var(--navy);
  border-bottom-color: var(--purple);
  font-weight: 700;
}

/* Panels */
.shortcut-panel { display: none; }
.shortcut-panel.active { display: block; }

/* ── Service tab inner layout ─────────────────────────── */
.shortcut-find-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: flex-start;
}

/* Find box */
.shortcut-find-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.shortcut-find-title {
  background: var(--navy);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 14px 22px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.shortcut-find-title i { color: var(--gold); }

.shortcut-find-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 12px;
  background: #fafafa;
  gap: 8px;
}
.sf-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.sf-link i { color: var(--purple); font-size: 1.2rem; }
.sf-link:hover {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  transform: translateY(-2px);
}
.sf-link:hover i { color: var(--gold-light); }

/* Action cards */
.shortcut-action-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
  margin-bottom: 50px;
}
.sac-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  position: relative;
  overflow: hidden;
}
.sac-card::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 3px;
}
.sac-ask   { background: #fff8f0; }
.sac-apply { background: #f0f6ff; }
.sac-recommend { background: #f3f0ff; }
.sac-ask::before    { background: #ff8c00; }
.sac-apply::before  { background: #1a56c4; }
.sac-recommend::before { background: var(--purple); }

.sac-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-card);
}

.sac-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.sac-ask   .sac-icon { background: rgba(255,140,0,0.12); color: #ff8c00; }
.sac-apply .sac-icon { background: rgba(26,86,196,0.12); color: #1a56c4; }
.sac-recommend .sac-icon { background: var(--purple-pale); color: var(--purple); }

.sac-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.sac-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Family site tab ──────────────────────────────────── */
.family-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 40px;
}
.family-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  position: relative;
  min-height: 280px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: var(--shadow-card);
}
.family-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-deep);
}
.family-card-bg {
  position: absolute; inset: 0;
  transition: transform 0.5s ease;
}
.family-card:hover .family-card-bg { transform: scale(1.06); }

.family-winery .family-card-bg {
  background: linear-gradient(135deg, #3d0066 0%, #7b2fb5 40%, #c8a84b 100%);
}
.family-b2b .family-card-bg {
  background: linear-gradient(135deg, #0a1628 0%, #1b3a6b 50%, #5e1a84 100%);
}
.family-b2c .family-card-bg {
  background: linear-gradient(135deg, #1a4a6b 0%, #5e1a84 50%, #c8a84b 100%);
}

.family-card-body {
  position: relative;
  z-index: 2;
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.family-card-logo {
  font-size: 3.2rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.family-card-name {
  font-family: var(--ff-display);
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.family-card-en {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.family-card-desc {
  font-size: 1.45rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  flex: 1;
}
.family-card-arrow {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: gap 0.2s;
}
.family-card:hover .family-card-arrow { gap: 14px; }


/* ─────────────────────────────────────────────────────────────
   4. INLINE VISITOR BAR
───────────────────────────────────────────────────────────── */
 
#main_visitors { display: none !important; }
 
.inline-visitor-bar {
  display: flex; align-items: center; gap: 24px;
  margin-top: 14px; padding: 16px 20px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold);
}
 
.ivb-label {
  font-size: 1.2rem; font-weight: 700; color: var(--gold);
  letter-spacing: 0.08em; text-transform: uppercase;
  flex-shrink: 0; display: flex; align-items: center; gap: 7px;
}
 
.ivb-stats {
  display: flex; align-items: center; flex: 1; justify-content: flex-end;
}
 
.ivb-stat { text-align: center; padding: 0 18px; }
.ivb-stat--total .ivb-num { color: var(--gold-light) !important; font-size: 2.0rem !important; }
.ivb-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
 
.ivb-num {
  display: block; font-size: 1.8rem; font-weight: 800;
  color: var(--gold); line-height: 1; letter-spacing: -0.02em;
}
.ivb-sub {
  display: block; font-size: 1.1rem; font-weight: 600;
  color: rgba(255,255,255,0.45); letter-spacing: 0.05em;
  text-transform: uppercase; margin-top: 4px;
}
 
@media (max-width:768px) {
  .inline-visitor-bar { flex-wrap: wrap; gap: 12px; }
  .ivb-stats { justify-content: flex-start; flex-wrap: wrap; }
  .ivb-stat  { padding: 0 12px; }
  .ivb-divider { height: 24px; }
}

/* ============================================================
   C. 소식 게시판 + SNS
   ============================================================ */
#main_news_sns {
  padding: 100px 0;
  background: var(--cream);
}

.news-sns-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  text-align: left;
}

/* ── News board ──────────────────────────────────────── */
.news-board-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.news-board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px 0 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.news-board-tabs {
  display: flex;
}
.nb-tab {
  padding: 16px 22px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-family: var(--ff-body);
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nb-tab:hover { color: var(--navy); }
.nb-tab.active {
  color: var(--navy);
  border-bottom-color: var(--purple);
  font-weight: 700;
}

.nb-more {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  transition: gap 0.2s;
}
.nb-more:hover { gap: 10px; }

/* Panels */
.nb-panel { display: none; }
.nb-panel.active { display: block; }

/* Static list (used as fallback or primary) */
.nb-static-list {
  padding: 6px 0;
}
.nb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.nb-item:last-child { border-bottom: none; }
.nb-item:hover { background: #fafafa; }

.nb-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  flex-shrink: 0;
  background: var(--purple-pale);
  color: var(--purple);
  letter-spacing: 0;
  min-width: 44px;
  text-align: center;
}
.nb-cat-press {
  background: rgba(200,168,75,0.12);
  color: #7a5c00;
}
.nb-cat-qa {
  background: rgba(26,86,196,0.10);
  color: #1a56c4;
}

.nb-title {
  flex: 1;
  font-size: 1.45rem;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s;
}
.nb-item:hover .nb-title { color: var(--purple); }

.nb-date {
  font-size: 1.2rem;
  color: var(--text-muted);
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── SNS wrap ─────────────────────────────────────────── */
.sns-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.sns-header {
  padding: 22px 22px 0;
  border-bottom: 1px solid var(--border);
}
.sns-title {
  font-family: var(--ff-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 16px;
}

.sns-tab-wrap {
  display: flex;
  gap: 0;
}
.sns-tab {
  padding: 10px 14px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-family: var(--ff-body);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  margin-bottom: -1px;
}
.sns-tab i { font-size: 1.2rem; }
.sns-tab:hover { color: var(--navy); }
.sns-tab.active { color: var(--navy); border-bottom-color: var(--purple); font-weight: 700; }

/* SNS panels */
.sns-panel { display: none; flex: 1; }
.sns-panel.active { display: flex; flex-direction: column; }

/* YouTube */
.sns-video-thumb { padding: 16px; flex: 1; }
.sns-yt-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
}
.sns-yt-embed iframe { width: 100%; height: 100%; display: block; }
.sns-yt-meta { padding: 4px 0; }
.sns-yt-title {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.5;
}
.sns-yt-sub {
  font-size: 1.2rem;
  color: var(--purple);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Blog */
.sns-blog-wrap { padding: 16px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.sns-blog-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #f0fff4;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s;
}
.sns-blog-card:hover { background: #dcfce7; }
.sns-blog-icon { flex-shrink: 0; }
.sns-blog-name { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.sns-blog-desc { font-size: 1.2rem; color: var(--text-muted); line-height: 1.5; }
.sns-blog-cta { font-size: 1.2rem; font-weight: 600; color: #059669; margin-top: 5px; display: flex; align-items: center; gap: 5px; }

.sns-blog-posts { display: flex; flex-direction: column; gap: 0; }
.sns-blog-post {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.sns-blog-post:last-child { border-bottom: none; }
.sbp-dot {
  width: 6px; height: 6px;
  background: var(--purple);
  border-radius: 50%;
  flex-shrink: 0;
}
.sns-blog-post a {
  font-size: 1.35rem;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s;
}
.sns-blog-post a:hover { color: var(--purple); }

/* Instagram */
.sns-insta-wrap { padding: 16px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.sns-insta-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.sns-insta-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.20);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--white);
  flex-shrink: 0;
}
.sns-insta-name { font-size: 1.4rem; font-weight: 700; color: var(--white); }
.sns-insta-sub  { font-size: 1.15rem; color: rgba(255,255,255,0.75); margin-top: 2px; }
.sns-insta-follow {
  margin-left: auto;
  background: rgba(255,255,255,0.20);
  color: var(--white);
  font-size: 1.2rem; font-weight: 700;
  padding: 6px 16px; border-radius: 20px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.sns-insta-header:hover .sns-insta-follow { background: rgba(255,255,255,0.30); }

.sns-insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  flex: 1;
}
.sig-tile {
  aspect-ratio: 1/1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: rgba(255,255,255,0.40);
  transition: transform 0.25s, color 0.25s;
  cursor: pointer;
}
.sig-tile:hover { transform: scale(1.05); color: rgba(255,255,255,0.70); }

.sns-insta-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--purple-pale);
  color: var(--purple);
  font-size: 1.35rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s, gap 0.2s;
}
.sns-insta-cta:hover { background: var(--purple); color: var(--white); gap: 14px; }

/* Responsive */
@media (max-width: 1200px) {
  .news-sns-layout { grid-template-columns: 1fr 340px; gap: 28px; }
  .shortcut-find-wrap { grid-template-columns: 1fr; }
  .shortcut-action-cards { flex-direction: row; min-width: auto; }
  .sac-card { flex: 1; }
}
@media (max-width: 1024px) {
  .news-sns-layout { grid-template-columns: 1fr; }
  .sns-wrap { min-height: 400px; }
  .family-cards { grid-template-columns: 1fr; gap: 16px; }
  .shortcut-action-cards { flex-direction: column; }
}
@media (max-width: 768px) {
  #main_shortcut { padding: 40px 0 0; }
  .shortcut-tab { padding: 12px 18px; font-size: 1.45rem; }
  .shortcut-find-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-timeline { gap: 0; }
  .sp-step { padding: 0 10px; }
  .sp-step-title { font-size: 1.1rem; }
  .sp-step-desc { font-size: 0.95rem; }
  #main_news_sns { padding: 60px 0; }
  .news-board-tabs { overflow-x: auto; }
  .nb-tab { padding: 12px 16px; }
}
@media (max-width: 480px) {
  .shortcut-find-grid { grid-template-columns: 1fr 1fr; }
  .family-card { min-height: 220px; }
}

