/* ===== 기본 설정 ===== */
:root {
  --mv-navy: #1a1a2e;
  --mv-blue: #2b5cff;
  --mv-blue-dark: #1a3fd6;
  --mv-mint: #d7f2e6;
  --mv-ink: #1b1b1f;
  --mv-gray: #6b7280;
  --mv-line: #e6e8ec;
  --mv-bg: #ffffff;
  --mv-soft: #f6f8fa;
  --radius: 16px;
  --max: 1200px;
  --header-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
  font-family: 'Noto Sans KR', -apple-system, sans-serif;
  color: var(--mv-ink);
  background: var(--mv-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ===== 로고 ===== */
.logo { display: flex; align-items: center; gap: 12px; }
.kt-logo-img { height: 30px; width: auto; display: block; }
.logo-sep { width: 1px; height: 26px; background: var(--mv-line); }
.logo-brand { display: flex; flex-direction: column; line-height: 1.1; }
.logo-brand b { font-size: 20px; font-weight: 900; color: var(--mv-navy); letter-spacing: -0.5px; }
.logo-badge { font-style: normal; font-size: 11px; font-weight: 700; color: #e60012; letter-spacing: -0.2px; }

/* 푸터용 로고 */
.footer-logo-row { display: flex; align-items: center; gap: 10px; }
.footer-kt-img { height: 28px; width: auto; filter: invert(1); }
.footer-logo-row .logo-sep { background: #3a3a48; }
.footer-brand-name { font-size: 20px; font-weight: 900; color: #fff; }
.footer-brand-badge { font-size: 12px; font-weight: 700; color: #ff5a67; margin-left: 8px; }

/* ===== 프로모션 바 ===== */
.promo-bar { background: #eef2ff; border-bottom: 1px solid #e0e6ff; }
.promo-inner {
  max-width: var(--max); margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; gap: 18px;
}
.promo-text { font-size: 15px; color: #2a3550; }
.promo-text strong { color: var(--mv-blue); }
.promo-spark { color: var(--mv-blue); }
.promo-cta {
  border: 1px solid #c3ccf5; border-radius: 999px;
  padding: 6px 16px; font-size: 13px; font-weight: 500; background: #fff;
}
.promo-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.promo-hide { font-size: 13px; color: var(--mv-gray); display: flex; align-items: center; gap: 6px; cursor: pointer; }
.promo-close { font-size: 16px; color: var(--mv-gray); padding: 4px; }

/* ===== 헤더 ===== */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--mv-line); }
.header-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px; height: var(--header-h);
  display: flex; align-items: center; gap: 40px;
}
.gnb ul { display: flex; gap: 34px; }
.gnb a { font-size: 17px; font-weight: 700; color: #2a2a33; padding: 8px 0; position: relative; }
.gnb a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 3px; background: var(--mv-blue); transition: width .25s; border-radius: 3px; }
.gnb a:hover { color: var(--mv-blue); }
.gnb a:hover::after { width: 100%; }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.pill { border-radius: 999px; padding: 9px 18px; font-size: 14px; font-weight: 700; }
.pill-primary { background: var(--mv-blue); color: #fff; }
.pill-primary:hover { background: var(--mv-blue-dark); }
.pill-ghost { background: #eef2ff; color: var(--mv-blue); }

.icon-menu { display: flex; gap: 6px; margin-left: 6px; }
.icon-btn { display: flex; flex-direction: column; align-items: center; gap: 2px; color: #3a3a44; font-size: 11px; padding: 4px 8px; border-radius: 10px; }
.icon-btn:hover { color: var(--mv-blue); background: var(--mv-soft); }

/* ===== 히어로 ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: #cfeaf6 url('../images/main-bg.png') no-repeat right center;
  background-size: cover;
}
/* 왼쪽 가독성용 화이트 스크림 */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.55) 26%, rgba(255,255,255,.1) 48%, rgba(255,255,255,0) 62%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; padding: 34px 24px 48px; display: grid; grid-template-columns: 190px 1fr; gap: 26px; min-height: 440px; }

/* 퀵메뉴 */
.quick-menu { background: #fff; border-radius: var(--radius); padding: 20px 18px; box-shadow: 0 6px 24px rgba(0,0,0,.05); align-self: start; }
.quick-head { display: flex; justify-content: space-between; align-items: flex-start; font-weight: 900; font-size: 15px; color: var(--mv-navy); line-height: 1.15; }
.quick-toggle { color: var(--mv-gray); font-size: 12px; }
.quick-group { margin-top: 18px; }
.quick-title { font-size: 13px; font-weight: 700; color: var(--mv-blue); margin-bottom: 8px; }
.quick-group ul li a { display: block; font-size: 13px; color: #4b4b55; padding: 5px 0; }
.quick-group ul li a:hover { color: var(--mv-blue); text-decoration: underline; }
.quick-banner { display: block; margin-top: 18px; background: linear-gradient(135deg, #2b5cff, #6b8cff); color: #fff; border-radius: 12px; padding: 14px; text-align: center; }
.quick-banner strong { display: block; font-size: 14px; }
.quick-banner span { font-size: 12px; opacity: .9; }

/* 슬라이더 */
.hero-slider { background: transparent; overflow: visible; position: relative; min-height: 400px; }
.hero-track { position: relative; height: 100%; min-height: 400px; }
.slide {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  padding: 10px 4px; opacity: 0; visibility: hidden; transition: opacity .5s;
  max-width: 560px;
}
.slide.is-active { opacity: 1; visibility: visible; }
.slide-art { display: none; }
.slide-eyebrow { display: inline-block; align-self: flex-start; background: rgba(43,92,255,.12); color: var(--mv-blue); font-size: 13px; font-weight: 800; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.slide-title { font-size: 44px; font-weight: 900; line-height: 1.22; color: var(--mv-navy); letter-spacing: -1.2px; text-shadow: 0 1px 12px rgba(255,255,255,.6); }
.slide-desc { margin-top: 16px; font-size: 17px; color: #2f3646; font-weight: 500; }
.slide-cta { display: inline-block; margin-top: 26px; background: var(--mv-navy); color: #fff; padding: 13px 30px; border-radius: 999px; font-weight: 700; font-size: 15px; }
.slide-cta:hover { background: #000; }
.slide-art { position: relative; display: flex; justify-content: center; align-items: center; height: 100%; }
.slide-badge { position: absolute; top: 24px; right: 30px; background: #ff6a3d; color: #fff; font-weight: 700; font-size: 14px; padding: 8px 18px; border-radius: 999px 999px 999px 4px; }
.slide-badge.badge-blue { background: var(--mv-blue); }
.slide-badge.badge-orange { background: #ff8c1a; }

.slide-visual { width: 240px; height: 240px; border-radius: 30px; position: relative; }
.visual-router { background: radial-gradient(circle at 40% 35%, #fff, #cfe9dc); box-shadow: inset 0 -20px 40px rgba(0,0,0,.06); }
.visual-router::after { content: '🌐'; position: absolute; inset: 0; display: grid; place-items: center; font-size: 92px; }
.visual-phone { background: radial-gradient(circle at 40% 35%, #fff, #d5dcff); }
.visual-phone::after { content: '📱'; position: absolute; inset: 0; display: grid; place-items: center; font-size: 92px; }
.visual-combo { background: radial-gradient(circle at 40% 35%, #fff, #ffe4bf); }
.visual-combo::after { content: '👨‍👩‍👧'; position: absolute; inset: 0; display: grid; place-items: center; font-size: 84px; }

.hero-controls { position: absolute; left: 40px; bottom: 22px; display: flex; align-items: center; gap: 10px; }
.hero-controls button { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.7); color: var(--mv-navy); font-size: 16px; display: grid; place-items: center; }
.hero-controls button:hover { background: #fff; }
.hero-count { font-size: 14px; font-weight: 700; color: var(--mv-navy); }
.hero-count b { color: var(--mv-blue); }

/* ===== 갤럭시 언팩 카운트다운 바 ===== */
.unpacked-bar { background: #1c1c1c; color: #fff; }
.unpacked-bar-inner { display: flex; align-items: center; gap: 24px; padding-top: 18px; padding-bottom: 18px; }
.ub-title { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; white-space: nowrap; }
.ub-title em { font-style: normal; font-weight: 500; opacity: .85; }
.ub-ticket-ico { margin-right: 4px; }
.ub-timer { display: flex; align-items: flex-start; gap: 10px; margin-left: auto; }
.ub-unit { display: flex; flex-direction: column; align-items: center; min-width: 44px; }
.ub-unit b { font-size: 30px; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
.ub-unit i { font-style: normal; font-size: 12px; opacity: .7; margin-top: 5px; }
.ub-colon { font-size: 24px; font-weight: 700; opacity: .5; line-height: 1.1; }
.ub-btn { display: inline-flex; align-items: center; gap: 6px; background: #fff; color: #1c1c1c; font-weight: 700; font-size: 15px; padding: 12px 22px; border-radius: 999px; white-space: nowrap; }
.ub-btn:hover { background: #eef2ff; }
.unpacked-bar.is-ended .ub-timer { opacity: .5; }

/* ===== 갤럭시 언팩 사전구매 알림신청 ===== */
.unpacked {
  padding: 84px 0;
  background: radial-gradient(120% 100% at 30% 20%, #dcdbd7 0%, #cbcac6 45%, #bcbbb7 100%);
}
.unpacked-inner { display: flex; align-items: center; justify-content: center; gap: 76px; flex-wrap: wrap; }

/* 티켓 그래픽 (배경 제거 이미지 + 텍스트) */
.unpacked-ticket { width: 300px; max-width: 78vw; display: flex; flex-direction: column; align-items: center; }
.unpacked-ticket img { width: 100%; height: auto; display: block; filter: drop-shadow(0 18px 34px rgba(50,50,56,.22)); }
.unpacked-wordmark { margin-top: 22px; font-size: 34px; font-weight: 900; color: #17171a; letter-spacing: -1.2px; text-align: center; }

.unpacked-copy { max-width: 430px; }
.unpacked-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: #4a4a46; letter-spacing: 0.2px; }
.unpacked-eyebrow::before { content: '✦'; font-size: 15px; background: linear-gradient(150deg, #2fd3a8, #2b6bff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.unpacked-title { font-size: 44px; font-weight: 900; color: #17171a; line-height: 1.2; margin-top: 14px; letter-spacing: -1.4px; }
.unpacked-title .grad { background: linear-gradient(120deg, #2fd3a8 0%, #2b6bff 55%, #1a3fd6 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.unpacked-desc { margin-top: 18px; font-size: 16px; color: #55554f; line-height: 1.75; }
.unpacked-desc strong { color: #17171a; font-weight: 700; }
.unpacked-actions { margin-top: 30px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.unpacked-btn { display: inline-flex; align-items: center; gap: 8px; background: #17171a; color: #fff; font-weight: 700; font-size: 16px; padding: 16px 34px; border-radius: 999px; transition: transform .2s, background .2s; }
.unpacked-btn:hover { background: #000; transform: translateY(-2px); }
.unpacked-note { font-size: 12px; color: #6f6f68; }

/* ===== 섹션 공통 ===== */
.section { padding: 64px 0; }
.section-title { font-size: 30px; font-weight: 900; color: var(--mv-navy); letter-spacing: -0.5px; }
.section-title.center { text-align: center; }
.section-sub { color: var(--mv-gray); font-size: 15px; margin-top: 6px; }
.section-sub.center { text-align: center; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 26px; }
.section-nav { display: flex; align-items: center; gap: 12px; }
.section-nav button { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--mv-line); font-size: 18px; color: var(--mv-navy); }
.section-nav button:hover { border-color: var(--mv-blue); color: var(--mv-blue); }
.sn-count { font-size: 14px; color: var(--mv-gray); }

/* 인기급상승 카드 */
.card-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcard { background: var(--tcard-bg); border-radius: var(--radius); padding: 26px 26px 20px; display: flex; justify-content: space-between; align-items: flex-end; min-height: 170px; transition: transform .2s, box-shadow .2s; }
.tcard:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.tcard-title { font-size: 21px; font-weight: 800; color: var(--mv-navy); line-height: 1.3; }
.tcard-desc { margin-top: 10px; font-size: 14px; color: #5a6070; }
.tcard-thumb { font-size: 46px; filter: drop-shadow(0 4px 6px rgba(0,0,0,.1)); }

/* 상품 바로가기 */
.shortcut-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 40px; }
.scard { background: var(--mv-soft); border: 1px solid var(--mv-line); border-radius: var(--radius); padding: 24px 14px; text-align: center; transition: all .2s; }
.scard:hover { background: #fff; border-color: var(--mv-blue); transform: translateY(-4px); box-shadow: 0 10px 24px rgba(43,92,255,.12); }
.scard-ico { font-size: 36px; display: block; margin-bottom: 10px; }
.scard b { display: block; font-size: 16px; color: var(--mv-navy); }
.scard em { display: block; font-style: normal; font-size: 12px; color: var(--mv-gray); margin-top: 4px; }

/* 상담 배너 */
.consult-band { background: linear-gradient(120deg, #1a3fd6, #2b5cff 55%, #4d7bff); color: #fff; }
.consult-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 48px; padding-bottom: 48px; flex-wrap: wrap; }
.consult-eyebrow { font-size: 14px; font-weight: 700; opacity: .85; }
.consult-title { font-size: 30px; font-weight: 900; margin-top: 6px; letter-spacing: -0.5px; }
.consult-desc { margin-top: 10px; font-size: 15px; opacity: .9; }
.consult-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.consult-btn { padding: 15px 26px; border-radius: 999px; font-weight: 700; font-size: 16px; }
.consult-btn.primary { background: #fff; color: var(--mv-blue); }
.consult-btn.ghost { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.5); }
.consult-btn:hover { transform: translateY(-2px); }

/* 공지/이벤트 */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.col-box { border: 1px solid var(--mv-line); border-radius: var(--radius); padding: 28px; }
.box-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.box-head h3 { font-size: 20px; font-weight: 800; color: var(--mv-navy); }
.more { font-size: 13px; color: var(--mv-gray); }
.more:hover { color: var(--mv-blue); }
.notice-list li a { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid var(--mv-line); font-size: 15px; }
.notice-list li:first-child a { border-top: none; }
.notice-list time { color: var(--mv-gray); font-size: 13px; white-space: nowrap; }
.notice-list a:hover span { color: var(--mv-blue); }
.event-list li a { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-top: 1px solid var(--mv-line); font-size: 15px; }
.event-list li:first-child a { border-top: none; }
.tag { background: #eef2ff; color: var(--mv-blue); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.event-list a:hover { color: var(--mv-blue); }

/* 히어로 슬라이드 실제 사진 */
.slide-photo { max-height: 320px; width: auto; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(0,0,0,.18)); }

/* ===== 휴대폰 라인업 ===== */
.phone-tabs { display: inline-flex; background: var(--mv-soft); border: 1px solid var(--mv-line); border-radius: 999px; padding: 4px; gap: 2px; }
.ptab { padding: 8px 20px; border-radius: 999px; font-size: 14px; font-weight: 700; color: var(--mv-gray); }
.ptab.is-active { background: var(--mv-blue); color: #fff; }
.phone-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 6px; }
.pcard { position: relative; background: #fff; border: 1px solid var(--mv-line); border-radius: var(--radius); padding: 18px 14px 16px; text-align: center; transition: transform .2s, box-shadow .2s, border-color .2s; }
.pcard:hover { transform: translateY(-5px); border-color: var(--mv-blue); box-shadow: 0 14px 30px rgba(43,92,255,.14); }
.pcard img { width: 100%; height: 150px; object-fit: contain; margin-bottom: 12px; }
.pcard b { display: block; font-size: 14px; font-weight: 700; color: var(--mv-navy); min-height: 38px; }
.pcard-cta { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 700; color: var(--mv-blue); background: #eef2ff; padding: 6px 14px; border-radius: 999px; }
.pcard:hover .pcard-cta { background: var(--mv-blue); color: #fff; }
.pcard-new { position: absolute; top: 12px; left: 12px; background: #e60012; color: #fff; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 6px; letter-spacing: 0.5px; }
.pcard.is-hidden { display: none; }

/* ===== 매장 안내 ===== */
.stores { background: var(--mv-soft); }
.store-search input { width: 260px; max-width: 60vw; padding: 12px 18px; border: 1px solid var(--mv-line); border-radius: 999px; font-size: 14px; background: #fff; }
.store-search input:focus { outline: none; border-color: var(--mv-blue); box-shadow: 0 0 0 3px rgba(43,92,255,.12); }
.store-table-wrap { background: #fff; border: 1px solid var(--mv-line); border-radius: var(--radius); overflow: hidden; }
.store-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.store-table thead th { background: #eef2ff; color: var(--mv-navy); font-weight: 700; padding: 15px 18px; text-align: left; font-size: 14px; }
.store-table tbody td { padding: 14px 18px; border-top: 1px solid var(--mv-line); color: #3d4457; }
.store-table tbody tr:hover { background: #f7f9ff; }
.store-table td:first-child { color: var(--mv-gray); font-size: 13px; width: 70px; }
.store-table td:nth-child(2) { font-weight: 700; color: var(--mv-navy); white-space: nowrap; }
.store-table td:last-child { white-space: nowrap; }
.store-table td:last-child a { color: var(--mv-blue); font-weight: 700; }
.store-table td:last-child a:hover { text-decoration: underline; }
.store-empty { padding: 40px; text-align: center; color: var(--mv-gray); }

/* ===== 서브페이지 공통 ===== */
.container.narrow { max-width: 860px; }
.gnb a.is-current { color: var(--mv-blue); }
.gnb a.is-current::after { width: 100%; }

.page-head {
  background: linear-gradient(120deg, #eef2ff 0%, #e8f7ef 100%);
  padding: 42px 0 38px;
  border-bottom: 1px solid var(--mv-line);
}
.breadcrumb { font-size: 13px; color: var(--mv-gray); margin-bottom: 14px; }
.breadcrumb a { color: var(--mv-gray); }
.breadcrumb a:hover { color: var(--mv-blue); }
.breadcrumb span { margin: 0 6px; color: #bcc2cc; }
.breadcrumb strong { color: var(--mv-navy); }
.page-title { font-size: 34px; font-weight: 900; color: var(--mv-navy); letter-spacing: -0.8px; }
.page-sub { margin-top: 8px; color: var(--mv-gray); font-size: 15px; }

/* ===== 게시판(공지 목록) ===== */
.board { padding-top: 40px; }
.board-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.nfilters { display: flex; gap: 8px; flex-wrap: wrap; }
.nfilter { padding: 9px 18px; border-radius: 999px; border: 1px solid var(--mv-line); background: #fff; font-size: 14px; font-weight: 700; color: var(--mv-gray); }
.nfilter:hover { border-color: var(--mv-blue); color: var(--mv-blue); }
.nfilter.is-active { background: var(--mv-blue); border-color: var(--mv-blue); color: #fff; }
.board-search input { width: 240px; max-width: 60vw; padding: 11px 18px; border: 1px solid var(--mv-line); border-radius: 999px; font-size: 14px; background: #fff; }
.board-search input:focus { outline: none; border-color: var(--mv-blue); box-shadow: 0 0 0 3px rgba(43,92,255,.12); }

.notice-board { border-top: 2px solid var(--mv-navy); }
.nrow { display: grid; grid-template-columns: 96px 1fr 120px; align-items: center; gap: 16px; padding: 18px 12px; border-bottom: 1px solid var(--mv-line); }
.nrow-head { font-size: 13px; font-weight: 700; color: var(--mv-gray); background: var(--mv-soft); padding: 14px 12px; }
.nrow-head span:nth-child(2) { padding-left: 4px; }
.nrow-head span:last-child { text-align: center; }
a.nrow { transition: background .15s; }
a.nrow:hover { background: #f7f9ff; }
a.nrow:hover .nrow-title { color: var(--mv-blue); }
.ncat { display: inline-block; justify-self: start; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.ncat.c-notice { background: #eef2ff; color: var(--mv-blue); }
.ncat.c-event { background: #ffefe6; color: #ff6a3d; }
.ncat.c-plan { background: #eaf7f0; color: #17a672; }
.ncat.c-service { background: #f1edfb; color: #7a5af0; }
.nrow-title { font-size: 16px; color: var(--mv-navy); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nrow-title .pin { font-style: normal; margin-right: 6px; }
.nrow-date { text-align: center; font-size: 14px; color: var(--mv-gray); }
.board-empty { padding: 60px; text-align: center; color: var(--mv-gray); }

/* 페이지네이션 */
.pager { display: flex; justify-content: center; gap: 6px; margin-top: 34px; }
.pager button { min-width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--mv-line); background: #fff; font-size: 14px; font-weight: 700; color: #4b4b55; }
.pager button:hover:not(:disabled) { border-color: var(--mv-blue); color: var(--mv-blue); }
.pager .pg-num.is-active { background: var(--mv-blue); border-color: var(--mv-blue); color: #fff; }
.pager button:disabled { opacity: .4; cursor: default; }

/* ===== 온라인 상담신청 폼 ===== */
.consult-form-sec { background: var(--mv-soft); }
.consult-form { margin-top: 34px; background: #fff; border: 1px solid var(--mv-line); border-radius: var(--radius); padding: 34px; box-shadow: 0 8px 26px rgba(30,35,50,.05); }
.cf-hp { display: none; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.cf-field { display: block; margin-bottom: 18px; }
.cf-field > span { display: block; font-size: 14px; font-weight: 700; color: var(--mv-navy); margin-bottom: 8px; }
.cf-field > span b { color: #e60012; }
.cf-field input, .cf-field select, .cf-field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--mv-line); border-radius: 10px;
  font-size: 15px; font-family: inherit; color: var(--mv-ink); background: #fff;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { outline: none; border-color: var(--mv-blue); box-shadow: 0 0 0 3px rgba(43,92,255,.12); }
.cf-field textarea { resize: vertical; }
.cf-agree { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: #4b5566; margin: 6px 0 24px; cursor: pointer; }
.cf-agree input { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; }
.cf-agree em { font-style: normal; color: var(--mv-gray); }
.cf-submit { width: 100%; background: var(--mv-blue); color: #fff; font-size: 17px; font-weight: 700; padding: 16px; border-radius: 12px; transition: background .2s; }
.cf-submit:hover { background: var(--mv-blue-dark); }
.cf-note { text-align: center; margin-top: 16px; font-size: 14px; color: var(--mv-gray); }
.cf-note a { color: var(--mv-blue); font-weight: 700; }

/* ===== 인터넷·TV BEST 요금제 ===== */
.plans-head { text-align: center; margin-bottom: 30px; }
.plans-eyebrow { font-size: 17px; color: #4b5566; font-weight: 700; }
.plans-title { font-size: 34px; font-weight: 900; color: var(--mv-navy); letter-spacing: -1px; margin-top: 6px; }

/* 가구 탭 */
.plan-tabs { display: flex; gap: 12px; margin-bottom: 26px; }
.ptab { flex: 1; padding: 16px 10px; border-radius: 12px; background: #9a9aa2; color: #fff; font-size: 17px; font-weight: 800; transition: all .18s; }
.ptab:hover { background: #86868e; }
.ptab.is-active { background: linear-gradient(135deg, #ff3b47, #f5333f); box-shadow: 0 10px 22px rgba(245,51,63,.35); }

/* 사은품 토글 */
.gift-row { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 30px; }
.gift-desc { font-size: 15px; color: #4b5566; font-weight: 500; }
.gift-toggle { display: inline-flex; background: #eef0f3; border-radius: 999px; padding: 4px; }
.gt-opt { padding: 9px 18px; border-radius: 999px; font-size: 14px; font-weight: 700; color: #6b7280; }
.gt-opt.is-active { background: #17171a; color: #fff; }

/* 요금제 카드 그리드 */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.plan-card { position: relative; background: #fff; border: 1px solid var(--mv-line); border-radius: 18px; padding: 30px 26px 26px; box-shadow: 0 6px 20px rgba(30,35,50,.05); display: flex; flex-direction: column; }
.plan-card:hover { border-color: #cdd3dd; box-shadow: 0 14px 34px rgba(30,35,50,.10); }
.plan-ribbon { position: absolute; top: 22px; right: 0; background: var(--rib, #f5333f); color: #fff; font-size: 13px; font-weight: 800; padding: 7px 14px 7px 16px; line-height: 1.1; clip-path: polygon(12% 0, 100% 0, 100% 100%, 12% 100%, 0 50%); white-space: pre-line; text-align: center; }
.plan-title { font-size: 20px; font-weight: 800; color: var(--mv-navy); line-height: 1.35; min-height: 56px; padding-right: 40px; margin-bottom: 6px; }

.plan-block { padding: 18px 0; border-bottom: 1px dashed var(--mv-line); }
.plan-block:first-of-type { border-top: 1px solid #f0f1f4; }
.plan-sub { font-size: 14px; color: #9aa0aa; margin-bottom: 12px; }
.plan-specs { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.spec { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; color: #2f3646; }

/* 실제 아이콘 이미지 */
.ic { height: 28px; width: auto; object-fit: contain; display: block; flex-shrink: 0; }
.ic-gauge { height: 38px; }
.ic-wifi { height: 26px; }
.ic-coin { height: 34px; }

/* 인터넷 속도 게이지 (500M·1G 대체용, 100M 아이콘 톤에 맞춤) */
.gauge { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; font-size: 11px; font-weight: 800; color: #6b46ff; background:
  radial-gradient(circle at center, #fff 52%, transparent 53%),
  conic-gradient(#6b46ff 0 72%, #e5e7f5 0);
}

/* 지니TV 채널/OTT 칩 */
.tvchip { display: inline-grid; place-items: center; min-width: 30px; height: 26px; padding: 0 7px; border-radius: 7px; font-size: 12px; font-weight: 800; color: #fff; }
.chip-tv { background: linear-gradient(135deg, #6a5cff, #8b7bff); }
.chip-nf { background: #e50914; }
.chip-tv-ing { background: #ff153c; }
.chip-kids { background: #ff5aa0; font-size: 11px; }
.chip-vod { background: #ff8c1a; font-size: 10px; }
.chip-disney { background: #113ccf; }
.chip-multi { background: #eef0f3; }

/* 가격 */
.plan-price { padding: 20px 0 22px; text-align: right; }
.price-orig { font-size: 15px; color: #b0b5bd; text-decoration: line-through; margin-right: 8px; }
.price-now { font-size: 24px; font-weight: 900; color: var(--mv-navy); letter-spacing: -0.5px; }

/* 액션 */
.plan-actions { display: flex; gap: 10px; margin-top: auto; }
.plan-call { display: grid; place-items: center; width: 54px; border: 1px solid var(--mv-line); border-radius: 12px; font-size: 20px; }
.plan-call:hover { border-color: var(--mv-blue); }
.plan-join { flex: 1; display: grid; place-items: center; background: #17171a; color: #fff; font-weight: 700; font-size: 16px; padding: 15px; border-radius: 12px; }
.plan-join:hover { background: #000; }

/* 상품권/가전 안내 */
.plan-gift-notice { grid-column: 1 / -1; text-align: center; background: var(--mv-soft); border: 1px solid var(--mv-line); border-radius: 18px; padding: 54px 30px; }
.plan-gift-notice .pg-ico { font-size: 46px; display: block; margin-bottom: 16px; }
.plan-gift-notice p { font-size: 16px; color: #4b5566; line-height: 1.7; }
.plan-gift-notice strong { color: var(--mv-navy); }
.pg-actions { display: inline-flex; gap: 12px; margin-top: 24px; align-items: center; }
.pg-actions .plan-join { padding: 14px 34px; flex: none; }
.plan-call-txt { font-weight: 800; color: var(--mv-navy); font-size: 16px; }

.plans-note { margin-top: 26px; font-size: 13px; color: #9aa0aa; text-align: right; }

/* ===== 매장안내(지도) ===== */
.store-map-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.smt-count { font-size: 15px; color: var(--mv-gray); }
.smt-count b { color: var(--mv-blue); font-weight: 800; font-size: 18px; }
.store-map-layout { display: grid; grid-template-columns: 380px 1fr; gap: 20px; border: 1px solid var(--mv-line); border-radius: var(--radius); overflow: hidden; height: 560px; }
.store-map-list { overflow-y: auto; border-right: 1px solid var(--mv-line); background: #fff; }
.sm-item { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--mv-line); transition: background .15s; }
.sm-item:hover { background: #f7f9ff; }
.sm-item-main b { display: block; font-size: 16px; font-weight: 700; color: var(--mv-navy); }
.sm-item-main span { display: block; font-size: 13px; color: var(--mv-gray); margin-top: 3px; }
.sm-item-side { text-align: right; white-space: nowrap; }
.sm-item-side em { display: block; font-style: normal; font-size: 13px; color: #4b4b55; font-weight: 700; }
.sm-place { font-size: 12px; color: var(--mv-blue); font-weight: 700; }
.store-map { background: #eef1f4; position: relative; min-height: 400px; }
.store-map.sm-map-empty { display: grid; place-items: center; }
.sm-map-notice { text-align: center; color: var(--mv-gray); padding: 30px; max-width: 380px; }
.sm-map-ico { font-size: 40px; display: block; margin-bottom: 12px; }
.sm-map-notice code { background: #e3e7ee; padding: 2px 6px; border-radius: 4px; font-size: 12px; color: #33383f; }
.sm-info { padding: 6px 10px; min-width: 180px; font-size: 13px; }
.sm-info b { display: block; font-size: 15px; color: var(--mv-navy); margin-bottom: 2px; }
.sm-info span { display: block; color: #6b7280; margin-bottom: 8px; }
.sm-info a { color: var(--mv-blue); font-weight: 700; }
.store-map-help { margin-top: 18px; font-size: 14px; color: var(--mv-gray); text-align: center; }
.store-map-help strong { color: var(--mv-blue); }

/* ===== 공지 상세 ===== */
.notice-detail { padding-top: 8px; }
.nd-head { border-bottom: 2px solid var(--mv-navy); padding-bottom: 22px; margin-bottom: 8px; }
.nd-head .ncat { margin-bottom: 14px; }
.nd-title { font-size: 26px; font-weight: 800; color: var(--mv-navy); line-height: 1.4; letter-spacing: -0.5px; }
.nd-meta { display: flex; gap: 16px; margin-top: 14px; font-size: 14px; color: var(--mv-gray); }
.nd-meta span { position: relative; }
.nd-meta span + span::before { content: ''; position: absolute; left: -9px; top: 4px; width: 1px; height: 12px; background: var(--mv-line); }
.nd-body { padding: 34px 4px 44px; font-size: 16px; line-height: 1.85; color: #33383f; border-bottom: 1px solid var(--mv-line); }
.nd-body p { margin-bottom: 16px; }
.nd-body ul { margin: 0 0 16px 20px; list-style: disc; }
.nd-body li { margin-bottom: 8px; }
.nd-body strong { color: var(--mv-navy); }

.nd-nav { margin-top: 10px; }
.nd-nav-item { display: flex; align-items: center; gap: 20px; padding: 16px 6px; border-bottom: 1px solid var(--mv-line); font-size: 15px; color: #4b4b55; }
.nd-nav-item span { color: var(--mv-gray); font-weight: 700; min-width: 60px; }
.nd-nav-item b { font-weight: 500; color: var(--mv-navy); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
a.nd-nav-item:hover b { color: var(--mv-blue); }
.nd-nav-item.is-empty b { color: var(--mv-gray); }
.nd-actions { display: flex; justify-content: center; margin-top: 34px; }
.nd-list-btn { background: var(--mv-navy); color: #fff; font-weight: 700; font-size: 15px; padding: 14px 40px; border-radius: 999px; }
.nd-list-btn:hover { background: #000; }
.nd-missing { text-align: center; padding: 50px 0; }
.nd-missing p { color: var(--mv-gray); margin-bottom: 20px; }

/* ===== 푸터 ===== */
.footer { background: #14141c; color: #a7adba; padding: 44px 0; margin-top: 20px; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-logo { color: #fff; font-size: 24px; }
.footer-logo .logo-dot { color: #6b8cff; }
.footer-desc { margin-top: 8px; font-size: 14px; }
.footer-nav { display: flex; gap: 22px; align-items: center; justify-content: flex-end; }
.footer-nav a { font-size: 14px; color: #c3c9d6; }
.footer-nav a:hover { color: #fff; }
.footer-info { grid-column: 1 / -1; border-top: 1px solid #2a2a38; padding-top: 20px; font-size: 13px; line-height: 1.9; }
.footer-info strong { color: #dfe3ec; }
.copyright { margin-top: 8px; color: #6b7183; }

/* ===== 전체메뉴 ===== */
.allmenu { position: fixed; inset: 0; z-index: 100; background: rgba(20,20,28,.5); backdrop-filter: blur(4px); }
.allmenu-inner { position: absolute; top: 0; right: 0; width: min(420px, 90vw); height: 100%; background: #fff; padding: 70px 34px; overflow-y: auto; box-shadow: -10px 0 40px rgba(0,0,0,.2); }
.allmenu-close { position: absolute; top: 22px; right: 26px; font-size: 22px; color: var(--mv-navy); }
.allmenu-grid { display: flex; flex-direction: column; gap: 26px; }
.allmenu-grid h4 { font-size: 18px; font-weight: 800; color: var(--mv-navy); margin-bottom: 10px; border-bottom: 2px solid var(--mv-blue); padding-bottom: 8px; }
.allmenu-grid a { display: block; font-size: 15px; color: #4b4b55; padding: 7px 0; }
.allmenu-grid a:hover { color: var(--mv-blue); padding-left: 6px; }

/* ===== 모션 최소화 ===== */
@media (prefers-reduced-motion: reduce) {
  .hero::after { animation: none; }
  * { scroll-behavior: auto; }
}

/* ===== 반응형 ===== */
@media (max-width: 960px) {
  .gnb, .header-actions .pill-ghost { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .quick-menu { display: none; }
  .card-row { grid-template-columns: 1fr; }
  .shortcut-grid { grid-template-columns: repeat(3, 1fr); }
  .phone-grid { grid-template-columns: repeat(3, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; flex-wrap: wrap; }
  .unpacked-bar-inner { flex-wrap: wrap; gap: 14px; justify-content: center; }
  .ub-title { width: 100%; text-align: center; font-size: 18px; }
  .ub-timer { margin-left: 0; }
  .unpacked-inner { gap: 40px; }
}
@media (max-width: 560px) {
  .promo-hide { display: none; }
  .hero { background-position: 72% center; }
  .hero::before { background: linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.35) 55%, rgba(255,255,255,.7) 100%); }
  .hero-inner { min-height: 380px; }
  .slide { max-width: 100%; padding: 10px; }
  .slide-title { font-size: 30px; text-shadow: 0 1px 10px rgba(255,255,255,.85); }
  .section-title { font-size: 24px; }
  .shortcut-grid { grid-template-columns: repeat(2, 1fr); }
  .phone-grid { grid-template-columns: repeat(2, 1fr); }
  .consult-inner { flex-direction: column; align-items: flex-start; }
  .board-toolbar { flex-direction: column; align-items: stretch; }
  .board-search input { width: 100%; max-width: none; }
  .nrow { grid-template-columns: 72px 1fr; row-gap: 6px; }
  .nrow-date { grid-column: 2; text-align: left; }
  .nrow-head { display: none; }
  .page-title { font-size: 26px; }
  .nd-title { font-size: 21px; }
  .store-map-layout { grid-template-columns: 1fr; height: auto; }
  .store-map-list { max-height: 320px; border-right: none; border-bottom: 1px solid var(--mv-line); }
  .store-map { height: 380px; }
  .plan-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan-tabs { flex-wrap: wrap; }
  .ptab { flex: 1 1 40%; font-size: 15px; padding: 13px 8px; }
  .plans-title { font-size: 26px; }
  .gift-row { flex-direction: column; gap: 10px; }
  .plans-note { text-align: left; }
  .cf-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .consult-form { padding: 22px; }
  .store-table-wrap { overflow-x: auto; }
  .store-table { min-width: 600px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .store-search input { width: 100%; max-width: none; }
}
