@charset "utf-8";

/* ===== MAIN VISUAL ===== */
.mvs { position: relative; width: 100%; height: 100vh; min-height: 640px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.mvs-bg { position: absolute; inset: 0; z-index: 1; background: url(/assets/images/main/mv1.jpg) center/cover no-repeat; transform: scale(1); animation: mvsZoom 16s ease-in-out infinite alternate; will-change: transform; }
.mvs-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgb(11 13 16 / 60%) 0%, rgba(16, 33, 62, 0.80) 100%); }
.mvs-inner { position: relative; z-index: 3; width: 100%; margin: 0 auto; padding: 0 20px; text-align: center; }
.mvs-label { display: inline-flex; align-items: center; margin-bottom: 24px; padding: 9px 20px; border-radius: 100px; color: #fff; letter-spacing: 0.02em; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.24); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); box-shadow: 0 1px 2px rgba(0,0,0,0.12), 0 8px 28px rgba(0,0,0,0.2); opacity: 0; transform: translateY(30px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1) 0.2s, transform 0.9s cubic-bezier(0.22,1,0.36,1) 0.2s; }
.mvs-point { color: #ffd11f; }
.mvs-title { color: #fff; line-height: 1.18; letter-spacing: -0.04em; margin-bottom: 26px; text-shadow: 0 4px 30px rgba(0,0,0,0.35); opacity: 0; transform: translateY(30px); transition: opacity 1s cubic-bezier(0.22,1,0.36,1) 0.4s, transform 1s cubic-bezier(0.22,1,0.36,1) 0.4s; }
.mvs-desc { color: rgba(255,255,255,0.92); letter-spacing: -0.01em; margin-bottom: 46px; text-shadow: 0 2px 16px rgba(0,0,0,0.3); opacity: 0; transform: translateY(20px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1) 0.72s, transform 0.9s cubic-bezier(0.22,1,0.36,1) 0.72s; }
.mvs-btns { display: flex; align-items: center; justify-content: center; gap: 12px; opacity: 0; transform: translateY(30px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1) 1s, transform 0.9s cubic-bezier(0.22,1,0.36,1) 1s; }
.mvs-btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 34px; border-radius: 100px; white-space: nowrap; transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.mvs-btn:hover { transform: translateY(-3px); }
.mvs-btn-primary { background: #1051af; color: #fff; border: 1.5px solid #1051af; box-shadow: 0 8px 24px rgba(16,81,175,0.35); }
.mvs-btn-primary:hover { background: #ffd11f; color: #1b3d6e; border-color: #ffd11f; box-shadow: 0 10px 28px rgba(236,170,32,0.4); }
.mvs-btn-primary span { transition: transform 0.25s; }
.mvs-btn-primary:hover span { transform: translateX(4px); }
.mvs-btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.7); }
.mvs-btn-outline:hover { background: #fff; color: #1b3d6e; border-color: #fff; }
.mvs-scroll { position: absolute; bottom: 36px; z-index: 3; display: inline-flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); letter-spacing: 0.05em; opacity: 0; transition: opacity 1s ease 1.35s, color 0.2s; }
.mvs-scroll:hover { color: #fff; }
.mvs-scroll-ico { position: relative; width: 20px; height: 32px; border: 1.5px solid currentColor; border-radius: 8px; }
.mvs-scroll-ico::after { content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 6px; background: currentColor; border-radius: 2px; transform: translateX(-50%); animation: mvsScroll 1.6s ease infinite; }
.mvs.is-visible .mvs-label, .mvs.is-visible .mvs-title, .mvs.is-visible .mvs-desc, .mvs.is-visible .mvs-btns { opacity: 1; transform: translateY(0); }
.mvs.is-visible .mvs-scroll { opacity: 1; }
@keyframes mvsZoom { from { transform: scale(1); } to { transform: scale(1.1); } }
@keyframes mvsScroll { 0% { opacity: 0; transform: translate(-50%,0); } 50% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,10px); } }


/* ===== WHY STARKEY ===== */
.biz { position: relative; width: 100%; padding: 160px 0 0px; overflow: hidden; }
.biz-bg { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.biz-bg::before { content: ""; position: absolute; inset: -10%; background: url(/assets/images/main/m1_bg.jpg) center/cover no-repeat; will-change: transform; transform: translateZ(0); backface-visibility: hidden; animation: bizWaveA 16s ease-in-out infinite alternate; }
@keyframes bizWaveA { from { transform: translate3d(0,0,0) scale(1.04); } to { transform: translate3d(-2%,1.2%,0) scale(1.09); } }
.biz-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgb(16 33 62 / 62%) 0%, rgb(11 26 51 / 22%) 100%); }
.biz-inner { position: relative; z-index: 3; width: 100%; padding: 0 20px; }
.biz-head { margin: 0 auto 60px; opacity: 0; transform: translateX(-36px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.biz.is-in .biz-head { opacity: 1; transform: translateX(0); }
.biz-tit { color: #fff; letter-spacing: -0.01em; }
.biz-tit2 { color: #fff; }
.biz-tit .en { color: #ecaa20; margin-right: 6px; }
.biz-desc { color: #fff; letter-spacing: -0.01em; }
.biz-cards { margin: 0 auto; display: flex; align-items: flex-start; gap: 24px; }
.biz-card { flex: 1; border-radius: 14px; overflow: hidden; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); box-shadow: 0 2px 6px rgba(0,0,0,0.12), 0 20px 48px rgba(0,0,0,0.28); opacity: 0; transform: translateY(40px); transition: transform 0.4s ease, border-color 0.35s ease, opacity 0.6s ease; }
.biz-card:nth-child(odd) { margin-top: 50px; }
.biz-card.is-visible { opacity: 1; transform: translateY(0); }
.biz-card:hover { transform: translateY(-8px); border-color: rgba(236,170,32,0.5); }
.biz-card-img { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.biz-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.biz-card:hover .biz-card-img img { transform: scale(1.06); }
.biz-card-body { padding: 28px 30px 36px; }
.biz-num { display: block; color: #ecaa20; line-height: 1; margin-bottom: 14px; }
.biz-card-tit { color: #fff; line-height: 1.35; letter-spacing: -0.035em; margin-bottom: 14px; }
.biz-card-desc { color: rgba(255,255,255,0.66); line-height: 1.6; letter-spacing: -0.01em; }
.biz-foot { margin-top: 100px; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.biz-foot-track { display: inline-flex; align-items: center; white-space: nowrap; width: max-content; animation: bizFootRoll 26s linear infinite; }
.biz-foot-item { display: inline-block; padding: 0 40px; color: rgba(255,255,255,0.16); letter-spacing: 0; }
@keyframes bizFootRoll { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* ===== PRODUCTS ===== */
.prd { position: relative; width: 100%; padding: 150px 0 160px; background: #fff; overflow: hidden; }
.prd-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.prd-ring { position: absolute; border-radius: 50%; border: 1px solid #e8edf3; will-change: transform; }
.prd-ring1 { width: 760px; height: 760px; top: -160px; left: 50%; margin-left: -380px; animation: prdFloatA 9s ease-in-out infinite alternate; }
.prd-ring2 { width: 1180px; height: 1180px; top: 40px; left: 50%; margin-left: -590px; animation: prdSpin 60s linear infinite; }
.prd-circle { position: absolute; width: 560px; height: 560px; border-radius: 50%; background: #f3f7fb; bottom: 60px; left: 50%; margin-left: -280px; animation: prdFloatB 11s ease-in-out infinite alternate; will-change: transform; }
.prd-dot { position: absolute; width: 36px; height: 36px; border-radius: 50%; background: #1051af; top: 360px; left: 21.2%; animation: prdFloatC 6s ease-in-out infinite alternate; }
.prd-inner { position: relative; z-index: 2; margin: 0 auto; padding: 0 20px; }
.prd-head { text-align: center; margin-bottom: 34px; opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.prd.is-in .prd-head { opacity: 1; transform: translateY(0); }
.prd-tit { color: #1b3d6e; letter-spacing: 0.04em; margin-bottom: 12px; }
.prd-desc { color: #5e6670; letter-spacing: -0.01em; }
.prd-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 50px; opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1) 0.12s, transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.12s; }
.prd.is-in .prd-tabs { opacity: 1; transform: translateY(0); }
.prd-tab { padding: 11px 26px; border-radius: 100px; background: #f1f4f8; color: #555; cursor: pointer; border: none; transition: background 0.2s, color 0.2s; }
.prd-tab:hover { background: #e3e9f1; }
.prd-tab.is-active { background: #1051af; color: #fff; }
.prd-stage { position: relative; height: 560px; }
.prd-track { position: relative; width: 100%; height: 100%; }
.prd-item { position: absolute; top: 50%; left: 50%; display: flex; flex-direction: column; align-items: center; width: 290px; opacity: 0; transform: translate(-50%,-50%) scale(0.4); transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.5s ease; pointer-events: none; }
.prd-item.is-prev { opacity: 0.5; transform: translate(calc(-50% - 400px),-50%) scale(0.72); z-index: 2; }
.prd-item.is-next { opacity: 0.5; transform: translate(calc(-50% + 400px),-50%) scale(0.72); z-index: 2; }
.prd-item.is-active { opacity: 1; width: 360px; z-index: 3; transform: translate(-50%,-50%) scale(1); pointer-events: auto; }
.prd-item.is-hide { opacity: 0; transform: translate(-50%,-50%) scale(0.4); }
.prd-thumb { position: relative; width: 180px; flex-shrink: 0; transition: width 0.5s ease; }
.prd-item.is-active .prd-thumb { width: 320px; }
.prd-thumb img { width: 100%; height: auto; display: block; }
.prd-badge { display: none; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 6px 16px; border-radius: 6px; color: #fff; letter-spacing: 0.04em; white-space: nowrap; box-shadow: 0 4px 12px rgba(16,33,62,0.18); z-index: 4; }
.prd-item.is-active .prd-badge { display: inline-flex; }
.prd-badge-new { background: #1051af; }
.prd-badge-best { background: #1b3d6e; }
.prd-badge-ai { background: #ecaa20; color: #1b3d6e; }
.prd-info { text-align: center; }
.prd-name { color: #1b3d6e; letter-spacing: 0; margin-bottom: 8px; }
.prd-sub { color: #1051af; letter-spacing: -0.01em; margin-bottom: 18px; }
.prd-feat { display: none; }
.prd-item.is-active .prd-feat { display: inline-block; text-align: left; }
.prd-feat li { position: relative; padding-left: 16px; color: #555; line-height: 1.9; }
.prd-feat li::before { content: ""; position: absolute; top: 12px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: #1051af; }
.prd-empty { display: none; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: #888; }
.prd-empty.is-show { display: block; }
.prd-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 1px solid #e2e8f0; box-shadow: 0 1px 3px rgba(16,33,62,0.08), 0 8px 24px rgba(16,33,62,0.12); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.prd-arrow:hover { background: #1051af; border-color: #1051af; }
.prd-arrow svg { width: 22px; height: 22px; stroke: #1b3d6e; transition: stroke 0.2s; }
.prd-arrow:hover svg { stroke: #fff; }
.prd-prev { left: 4%; }
.prd-next { right: 4%; }
@keyframes prdFloatA { from { transform: translate(0,0); } to { transform: translate(0,40px); } }
@keyframes prdFloatB { from { transform: translate(0,0); } to { transform: translate(0,-36px); } }
@keyframes prdFloatC { from { transform: translate(0,0); } to { transform: translate(18px,-24px); } }
@keyframes prdSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }


/* ===== CONSULT BANNER ===== */
.cta { position: relative; width: 100%; background: url(/assets/images/main/m4_bg.jpg) center/cover no-repeat; }
.cta::before { content: ""; position: absolute; inset: 0; }
.cta-inner { position: relative; z-index: 2; margin: 0 auto; padding: 150px 20px; }
.cta-box { max-width: 50%; opacity: 0; transform: translateY(34px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.cta.is-in .cta-box { opacity: 1; transform: translateY(0); }
.cta-tit { line-height: 1.32; letter-spacing: -0.035em; margin-bottom: 22px; }
.cta-tit span { color: #1b3d6e; }
.cta-desc { color: #555; line-height: 1.65; letter-spacing: -0.01em; margin-bottom: 36px; }
.cta-btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 32px; border-radius: 100px; color: #1051af; border: 1.5px solid #1051af; transition: background 0.25s, color 0.25s, gap 0.25s; }
.cta-btn span { display: inline-flex; transition: transform 0.25s; }
.cta-btn:hover { background: #1051af; color: #fff; }
.cta-btn:hover span { transform: translateX(4px); }


/* ===== GOV SUPPORT ===== */
.gov { position: relative; width: 100%; padding: 160px 0 150px; background: linear-gradient(180deg, #f4f8fc 0%, #fff 100%); overflow: hidden; }
.gov-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.gov-blur { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; will-change: transform; transform: translateZ(0); }
.gov-blur1 { width: 420px; height: 420px; background: rgba(16,81,175,0.16); top: -80px; right: -60px; animation: govFloatA 12s ease-in-out infinite alternate; }
.gov-blur2 { width: 300px; height: 300px; background: transparent; border: 1.5px solid rgba(16,81,175,0.12); filter: none; bottom: -40px; left: -30px; animation: govFloatB 14s ease-in-out infinite alternate, govRing 20s linear infinite; }
.gov-inner { position: relative; z-index: 2; margin: 0 auto; padding: 0 20px; }
.gov-head { margin-bottom: 56px; opacity: 0; transform: translateX(40px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.gov.is-in .gov-head { opacity: 1; transform: translateX(0); }
.gov-tit { color: #111; letter-spacing: -0.035em; margin-bottom: 14px; }
.gov-point { color: #1051af; }
.gov-desc { color: #5e6670; letter-spacing: -0.01em; }
.gov-grid { display: grid; grid-template-columns: minmax(0,560px) 1fr; gap: 50px; align-items: start; }
.gov-quiz { border-radius: 14px; overflow: hidden; background: rgba(255,255,255,0.72); border: 1px solid rgba(16,81,175,0.14); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 2px 8px rgba(16,33,62,0.06), 0 22px 52px rgba(16,33,62,0.12); opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1) 0.1s, transform 0.8s cubic-bezier(0.22,1,0.36,1) 0.1s; }
.gov.is-in .gov-quiz { opacity: 1; transform: translateY(0); }
.gov-quiz-head { padding: 20px 28px; text-align: center; color: #fff; background: #1b3d6e; letter-spacing: 0.02em; }
.gov-quiz-body { padding: 32px 30px 28px; }
.gov-q-grid { display: grid; gap: 24px 28px; margin-bottom: 8px; }
.gov-q-tit { color: #1b3d6e; letter-spacing: -0.01em; margin-bottom: 12px; }
.gov-q-no { color: #1051af; margin-right: 4px; }
.gov-opts { display: flex; gap: 10px; }
.gov-q-feed { display: none; margin-top: 10px; padding: 10px 14px; border-radius: 8px; background: rgba(16,81,175,0.07); color: #1051af; line-height: 1.5; border-left: 3px solid #1051af; }
.gov-q-feed.is-show { display: block; animation: govPop 0.3s ease; }
.gov-q.is-disabled { opacity: 0.4; pointer-events: none; }
.gov-q.is-disabled .gov-q-tit::after { content: " (건너뜀)"; color: #9aa6b5; font-weight: 400; }
.gov-opt { flex: 1; padding: 12px; border-radius: 6px; background: #f4f7fb; color: #555; border: 1.5px solid transparent; cursor: pointer; transition: background 0.22s ease, color 0.18s ease, border-color 0.22s ease; }
.gov-opt:hover { background: #e8eff7; }
.gov-opt.is-on { background: linear-gradient(135deg, #2a7de1 0%, #1051af 100%); color: #fff; border-color: #1051af; box-shadow: 0 4px 14px rgba(16,81,175,0.3); }
.gov-quiz-foot { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(16,81,175,0.12); }
.gov-result { display: none; width: 100%; padding: 22px 22px 20px; border-radius: 10px; background: rgba(16,81,175,0.06); border: 1px solid rgba(16,81,175,0.14); line-height: 1.6; }
.gov-result.is-show { display: block; animation: govPop 0.4s ease; }
.gov-result-badge { display: inline-block; padding: 5px 12px; border-radius: 100px; background: #1051af; color: #fff; margin-bottom: 12px; }
.gov-result-tit { color: #1b3d6e; letter-spacing: -0.02em; margin-bottom: 10px; }
.gov-result-desc { color: #3f4853; margin-bottom: 12px; }
.gov-result-note { color: #6b7480; margin-bottom: 10px; }
.gov-result-promise { color: #1051af; margin-bottom: 18px; }
.gov-result-btns { display: flex; gap: 10px; }
.gov-result-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 15px 16px; border-radius: 8px; border: 1.5px solid #1051af; background: #fff; color: #1051af; transition: background 0.22s ease, color 0.18s ease, gap 0.22s ease; }
.gov-result-btn span { transition: transform 0.22s ease; }
.gov-result-btn:hover { background: #eef3fb; gap: 10px; }
.gov-result-btn:hover span { transform: translateX(3px); }
.gov-result-btn-main { background: #1051af; color: #fff; }
.gov-result-btn-main:hover { background: #1b3d6e; color: #fff; }
.gov-em { color: #1051af; font-weight: 700; }
.gov-opt-msg { max-height: 0; overflow: hidden; opacity: 0; margin-top: 0; padding: 0 14px; border-radius: 6px; background: rgba(16,81,175,0.06); color: #1051af; line-height: 1.5; transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease, padding 0.3s ease; }
.gov-opt-msg.is-show { max-height: 140px; opacity: 1; margin-top: 12px; padding: 12px 14px; }
.gov-result-card { padding: 24px 24px 22px; background: #fff; border: 1px solid rgba(16,81,175,0.16); box-shadow: 0 2px 8px rgba(16,33,62,0.06), 0 18px 44px rgba(16,33,62,0.1); text-align: left; }
.gov-result-head { color: #8a9bb0; letter-spacing: 0.02em; margin-bottom: 8px; }
.gov-result-type { color: #1051af; letter-spacing: -0.02em; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid #eef2f6; }
.gov-result-body { color: #444c57; line-height: 1.7; margin-bottom: 12px; }
.gov-result-body b { color: #1051af; }
.gov-result-note { color: #8a9bb0; line-height: 1.6; margin-bottom: 20px; }
.gov-result-btns { display: flex; gap: 10px; }
.gov-result-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 16px; border-radius: 8px; border: 1.5px solid #1051af; color: #1051af; background: #fff; transition: background 0.22s ease, color 0.18s ease, gap 0.22s ease; }
.gov-result-btn span { display: inline-flex; transition: transform 0.22s ease; }
.gov-result-btn:hover { background: #eef3fb; gap: 12px; }
.gov-result-btn:hover span { transform: translateX(3px); }
.gov-result-btn-main { background: #1051af; color: #fff; }
.gov-result-btn-main:hover { background: #1b3d6e; color: #fff; }
.gov-result-card.is-type2 .gov-result-type, .gov-result-card.is-type2 .gov-result-body b { color: #ecaa20; }
.gov-result-card.is-type2 { border-color: rgba(236,170,32,0.4); }
.gov-result-card.is-type4 .gov-result-type, .gov-result-card.is-type4 .gov-result-body b { color: #1b3d6e; }
.gov-quiz-btn { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px; flex-shrink: 0; padding: 16px 34px; border-radius: 8px; background: #1051af; color: #fff; border: none; cursor: pointer; transition: background 0.25s, gap 0.25s; }
.gov-quiz-btn span { transition: transform 0.25s; }
.gov-quiz-btn:hover { background: #1b3d6e; }
.gov-quiz-btn:hover span { transform: translateX(4px); }
.gov-right { padding-top: 4px; }
.gov-sub-tit { position: relative; letter-spacing: -0.01em; margin-bottom: 30px; padding: 0 0 15px 0; border-bottom: 2px solid rgba(16,81,175,0.14); }
.gov-sub-eng { display: block; margin-bottom: 4px; color: #ecaa20; letter-spacing: 0.18em; font-size: 12px; }
.gov-steps { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 60px; padding-left: 0; }
.gov-steps::before { content: ""; position: absolute; top: 24px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, #1051af, rgba(16,81,175,0.2)); }
.gov-step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 8px; opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.gov-step.is-visible { opacity: 1; transform: translateY(0); }
.gov-step:nth-child(2) { transition-delay: 0.1s; }
.gov-step:nth-child(3) { transition-delay: 0.2s; }
.gov-step:nth-child(4) { transition-delay: 0.3s; }
.gov-step-no { position: relative; z-index: 2; flex-shrink: 0; width: 48px; height: 48px; margin-bottom: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; background: #1051af; box-shadow: 0 6px 18px rgba(16,81,175,0.35); }
.gov-step-txt { padding-top: 0; }
.gov-step-name { color: #1b3d6e; letter-spacing: -0.01em; margin-bottom: 6px; }
.gov-step-desc { color: #5b626c; line-height: 1.6; letter-spacing: -0.01em; }
.gov-faq-item { border: 1px solid rgba(16,81,175,0.16); border-radius: 8px; background: rgba(255,255,255,0.9); overflow: hidden; margin-bottom: 10px; }
.gov-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 20px 24px; text-align: left; color: #1b3d6e; background: #fff; border: none; cursor: pointer; transition: color 0.18s ease; }
.gov-faq-q:hover { color: #1051af; }
.gov-faq-ico { position: relative; flex-shrink: 0; width: 16px; height: 16px; transition: transform 0.3s; }
.gov-faq-ico::before, .gov-faq-ico::after { content: ""; position: absolute; top: 50%; left: 50%; background: #1051af; transition: transform 0.3s; }
.gov-faq-ico::before { width: 16px; height: 2px; transform: translate(-50%,-50%); }
.gov-faq-ico::after { width: 2px; height: 16px; transform: translate(-50%,-50%); }
.gov-faq-item.is-open .gov-faq-ico::after { transform: translate(-50%,-50%) scaleY(0); }
.gov-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.gov-faq-a p { padding: 0 24px 22px; color: #666; line-height: 1.7; letter-spacing: -0.01em; }
.gov-faq-item.is-open .gov-faq-a { max-height: 400px; }
@keyframes govFloatA { from { transform: translate(0,0); } to { transform: translate(-30px,30px); } }
@keyframes govFloatB { from { transform: translate(0,0); } to { transform: translate(30px,-26px); } }
@keyframes govPop { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes govRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }


/* ===== BRANCH FINDER ===== */
.bch { position: relative; width: 100%; padding: 150px 0 160px; background: #fff; }
.bch-inner { margin: 0 auto; padding: 0 20px; }
.bch-head { margin-bottom: 36px; opacity: 0; clip-path: inset(0 0 100% 0); transition: opacity 0.8s ease 0.05s, clip-path 0.9s cubic-bezier(0.22,1,0.36,1) 0.05s; }
.bch.is-in .bch-head { opacity: 1; clip-path: inset(0 0 0 0); }
.bch-tit { position: relative; letter-spacing: -0.035em; margin-bottom: 14px; }
.bch-eng { display: block; margin-bottom: 6px; color: #ecaa20; letter-spacing: 0.18em; }
.bch-desc { color: #5e6670; letter-spacing: -0.01em; }
.bch-search { display: flex; gap: 10px; margin-bottom: 20px; opacity: 0; transform: translateY(18px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1) 0.16s, transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.16s; }
.bch.is-in .bch-search { opacity: 1; transform: translateY(0); }
.bch-search-box { position: relative; flex: 1; display: flex; align-items: center; }
.bch-search-ico { position: absolute; left: 20px; width: 20px; height: 20px; stroke: #9aa6b5; }
.bch-search-input { width: 100%; height: 56px; padding: 0 22px 0 52px; border: 1.5px solid #dde4ec; border-radius: 8px; color: #1b3d6e; background: #f8fafc; transition: border-color 0.22s ease, background 0.22s ease; }
.bch-search-input::placeholder { color: #9aa6b5; }
.bch-search-input:focus { outline: none; border-color: #1051af; background: #fff; }
.bch-loc { flex-shrink: 0; padding: 0 22px; border: 1.5px solid #e2e8f0; border-radius: 8px; background: #fff; color: #1b3d6e; cursor: pointer; transition: border-color 0.22s ease, color 0.18s ease; }
.bch-loc:hover { border-color: #1051af; color: #1051af; }
.bch-search-btn { flex-shrink: 0; padding: 0 36px; border: none; border-radius: 8px; background: #1051af; color: #fff; cursor: pointer; transition: background 0.22s ease; }
.bch-search-btn:hover { background: #1b3d6e; }
.bch-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1) 0.27s, transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.27s; }
.bch.is-in .bch-tabs { opacity: 1; transform: translateY(0); }
.bch-tab { padding: 11px 22px; border: 1px solid #e2e8f0; border-radius: 6px; background: #fff; color: #555; cursor: pointer; transition: background 0.22s ease, color 0.18s ease, border-color 0.22s ease; }
.bch-tab:hover { border-color: #1051af; color: #1051af; }
.bch-tab.is-active { background: #1051af; color: #fff; border-color: #1051af; }
.bch-body { display: grid; grid-template-columns: 1fr minmax(0,440px); gap: 24px; align-items: stretch; opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1) 0.38s, transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.38s; }
.bch.is-in .bch-body { opacity: 1; transform: translateY(0); }
.bch-map { position: relative; border-radius: 12px; overflow: hidden; border: 1px solid #e2e8f0; min-height: 560px; }
.bch-map-embed { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #eef3f9 0%, #e3ecf6 100%); }
.bch-map-ph { color: #8a9bb0; letter-spacing: 0.02em; }
.bch-list-wrap { display: flex; flex-direction: column; min-height: 0; }
.bch-count { color: #1b3d6e; margin-bottom: 16px; }
.bch-count-area, .bch-count-num { color: #1051af; }
.bch-list { flex: 1; overflow-y: auto; max-height: 560px; padding-right: 6px; }
.bch-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; border: 1px solid #e8edf3; border-radius: 8px; margin-bottom: 10px; background: #fff; cursor: pointer; transition: border-color 0.22s ease, box-shadow 0.3s ease, background 0.22s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1); }
.bch-item:hover { border-color: rgba(16,81,175,0.4); box-shadow: 0 2px 6px rgba(16,33,62,0.05), 0 12px 30px rgba(16,33,62,0.1); transform: translateY(-2px); }
.bch-item.is-active { border-color: #ecaa20; background: #fffdf5; box-shadow: 0 8px 24px rgba(236,170,32,0.12); }
.bch-item-name { color: #1b3d6e; letter-spacing: -0.01em; margin-bottom: 8px; }
.bch-item-addr { color: #5b626c; line-height: 1.5; letter-spacing: -0.01em; margin-bottom: 6px; }
.bch-item-tel { color: #1051af; letter-spacing: 0.01em; }
.bch-item-arr { flex-shrink: 0; }
.bch-item-arr svg { width: 22px; height: 22px; stroke: #c2cdda; transition: stroke 0.2s, transform 0.2s; }
.bch-item:hover .bch-item-arr svg { stroke: #1051af; transform: translateX(3px); }
.bch-empty { display: none; padding: 40px 24px; text-align: center; color: #888; }
.bch-empty.is-show { display: block; }


/* ===== BRANCH POPUP ===== */
.bchpop { position: fixed; inset: 0; z-index: 1200; display: none; }
.bchpop.is-open { display: block; }
.bchpop-dim { position: absolute; inset: 0; background: rgba(11,26,51,0.55); backdrop-filter: blur(2px); animation: bchpopFade 0.3s ease; }
.bchpop-panel { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 92%; max-width: 1400px; max-height: 88vh; background: #fff; border-radius: 14px; box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 40px 100px rgba(0,0,0,0.4); animation: bchpopUp 0.4s cubic-bezier(0.22,1,0.36,1); display: flex; flex-direction: column; overflow: hidden; }
.bchpop-head { flex-shrink: 0; padding: 34px 40px 22px; }
.bchpop-tabs { flex-shrink: 0; display: flex; gap: 6px; padding: 0 40px; border-bottom: 1px solid #eef2f6; }
.bchpop-body { flex: 0 1 auto; min-height: 0; overflow-y: auto; padding: 34px 40px 40px; }
/* 지점별로 없는 버튼(지점사이트·네이버 등)은 JS가 숨기므로, 남은 버튼이 빈칸 없이 채워지도록 flex */
.bchpop-quick { flex-shrink: 0; position: sticky; bottom: 0; display: flex; flex-wrap: wrap; gap: 10px; padding: 18px 40px; background: #fff; border-top: 1px solid #eef2f6; }
.bchpop-close { position: absolute; top: 20px; right: 20px; z-index: 3; width: 40px; height: 40px; border-radius: 50%; border: none; background: #f1f4f8; color: #1b3d6e; font-size: 18px; cursor: pointer; transition: background 0.2s, color 0.2s; }
.bchpop-close:hover { background: #1051af; color: #fff; }
.bchpop-bread { color: #8a9bb0; letter-spacing: -0.01em; margin-bottom: 10px; }
.bchpop-title { color: #1b3d6e; letter-spacing: -0.035em; }
.bchpop-name2 { color: #1051af; }
.bchpop-tab { position: relative; padding: 18px 6px; margin-right: 24px; background: none; border: none; color: #888; cursor: pointer; transition: color 0.2s; }
.bchpop-tab::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 3px; background: #1051af; transform: scaleX(0); transition: transform 0.25s; }
.bchpop-tab:hover { color: #1051af; }
.bchpop-tab.is-active { color: #1051af; }
.bchpop-tab.is-active::after { transform: scaleX(1); }
.bchpop-pane { display: none; animation: bchpopFade 0.35s ease; }
.bchpop-pane.is-active { display: block; }
.bchpop-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.bchpop-photo { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; min-height: 320px; border-radius: 8px; background: linear-gradient(135deg, #eef3f9, #e3ecf6); color: #8a9bb0; margin-bottom: 26px; cursor: default; }
.bchpop-photo.is-img { background: #eef3f9 center/cover no-repeat; color: transparent; }
.bchpop-photo.is-hide { display: none; }
.bchpop-center { padding: 26px 20px 28px; border: 1px solid #e8edf3; border-radius: 12px; background: #f8fafc; }
.bchpop-addr-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.bchpop-meta { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.bchpop-addr { color: #1b3d6e; letter-spacing: -0.01em; margin-bottom: 0; }
.bchpop-pin { color: #1051af; }
.bchpop-status { flex-shrink: 0; display: inline-block; padding: 5px 14px; border-radius: 100px; background: rgba(16,81,175,0.1); color: #1051af; margin-bottom: 0; }
.bchpop-status.is-off { background: #f1f4f8; color: #8a9bb0; }
.bchpop-meta-item { text-align: center; padding: 22px 12px; border: 1px solid #e8edf3; border-radius: 8px; background: #fff; }
.bchpop-meta-val { color: #1b3d6e; letter-spacing: -0.01em; margin-bottom: 6px; }
.bchpop-meta-key { color: #888; }
.bchpop-note { display: flex; align-items: flex-start; gap: 8px; margin-top: 14px; margin-bottom: 0; padding: 14px 16px; border-radius: 8px; background: #fffdf5; border: 1px solid rgba(236,170,32,0.3); color: #1b3d6e; line-height: 1.5; letter-spacing: -0.01em; }
.bchpop-note-ico { flex-shrink: 0; color: #ecaa20; }
.bchpop-profile { display: grid; grid-template-columns: 190px 1fr; gap: 24px; align-items: start; padding: 26px; border: 1px solid #e8edf3; border-radius: 12px; }
.bchpop-profile-img { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; height: 250px; border-radius: 8px; background: #eef3f9; color: #8a9bb0; }
.bchpop-profile-eng { color: #ecaa20; letter-spacing: 0.2em; margin-bottom: 8px; }
.bchpop-profile-name { color: #1b3d6e; margin-bottom: 12px; }
.bchpop-profile-job { color: #1051af; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid #eef2f6; }
.bchpop-profile-list li { position: relative; padding-left: 16px; color: #555; line-height: 2; }
.bchpop-profile-list li::before { content: ""; position: absolute; top: 14px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: #1051af; }
.bchpop-profile-quote { grid-column: 1 / -1; height: auto; padding: 20px 22px; border-radius: 8px; background: #fffdf5; border: 1px solid rgba(236,170,32,0.3); color: #1b3d6e; line-height: 1.6; text-align: left; }
.bchpop-quote-by { display: block; margin-top: 12px; color: #454545; }
.bchpop-sub { color: #1b3d6e; margin-bottom: 20px; }
.bchpop-facils-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.bchpop-facils-head .bchpop-sub { margin-bottom: 0; }
.bchpop-facils-more { flex-shrink: 0; padding: 0; background: none; border: none; color: #8a9bb0; cursor: pointer; transition: color 0.18s ease; }
.bchpop-facils-more:hover { color: #1051af; }
.bchpop-facils-more.is-hide { display: none; }
.bchpop-facils-arw { display: inline-block; margin-left: 4px; }
/* 사진 없는 시설은 JS가 숨기므로, 남은 항목이 빈칸 없이 균등하게 채워지도록 flex */
.bchpop-facils { display: flex; flex-wrap: wrap; gap: 16px; }
.bchpop-facil { flex: 1 1 calc(25% - 12px); min-width: 200px; }
.bchpop-facil.is-hide { display: none; }
.bchpop-facil.is-more { display: none; }
.bchpop-facils.is-open .bchpop-facil.is-more { display: block; }
.bchpop-facil-img { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; height: 180px; border-radius: 8px; background: #eef3f9; color: #8a9bb0; margin-bottom: 14px; cursor: default; }
.bchpop-facil-img.is-img { background: #eef3f9 center/cover no-repeat; color: transparent; }
.bchpop-facil-name { color: #1b3d6e; }
.bchpop-facil-name:empty { display: none; }
.bchpop-map-grid { display: grid; grid-template-columns: 1fr 40%; gap: 24px; margin: 30px 0 22px; }
.bchpop-map { height: 420px; border-radius: 8px; overflow: hidden; border: 1px solid #e2e8f0; background: #eef3f9; }
.bchpop-route-item { display: flex; gap: 14px; padding: 27px 20px; border: 1px solid #e8edf3; border-radius: 8px; margin-bottom: 12px; }
.bchpop-route-ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: #1051af; color: #fff; display: flex; align-items: center; justify-content: center; }
.bchpop-route-ico svg { width: 24px; height: 24px; }
.bchpop-route-name { color: #1b3d6e; margin-bottom: 5px; }
.bchpop-route-desc { color: #666; line-height: 1.5; }
.bchpop-hours { padding: 18px; text-align: center; border-radius: 8px; background: #fffdf5; border: 1px solid rgba(236,170,32,0.3); color: #1b3d6e; }
.bchpop-quick-btn { flex: 1 1 calc(20% - 8px); min-width: 128px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 10px; border-radius: 8px; border: 1.5px solid #e2e8f0; background: #fff; color: #1b3d6e; cursor: pointer; transition: border-color 0.22s ease, color 0.18s ease, background 0.22s ease; }
.bchpop-quick-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.bchpop-quick-btn:hover { border-color: #1051af; color: #1051af; background: #f5f8fc; }
.bchpop-quick-main { background: #1051af; color: #fff; border-color: #1051af; }
.bchpop-quick-main:hover { background: #1b3d6e; border-color: #1b3d6e; color: #fff; }
.bchpop-quick-naver { background: #03c75a; color: #fff; border-color: #03c75a; }
.bchpop-quick-naver:hover { background: #02b350; border-color: #02b350; color: #fff; }
.bchpop-quick-kakao { background: #fee500; color: #3a1d1d; border-color: #fee500; }
.bchpop-quick-kakao:hover { background: #f3da00; border-color: #f3da00; color: #3a1d1d; }
@keyframes bchpopFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes bchpopUp { from { opacity: 0; transform: translate(-50%,-46%); } to { opacity: 1; transform: translate(-50%,-50%); } }


/* ===== BRANCH PHOTO LIGHTBOX ===== */
.bchlb { position: fixed; inset: 0; z-index: 1400; display: none; }
.bchlb.is-open { display: block; }
.bchlb-dim { position: absolute; inset: 0; background: rgba(8,16,30,0.88); animation: bchpopFade 0.25s ease; }
.bchlb-inner { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); display: flex; align-items: center; gap: 20px; width: 92%; max-width: 1200px; animation: bchlbZoom 0.3s cubic-bezier(0.22,1,0.36,1); }
.bchlb-stage { flex: 1; min-width: 0; display: flex; align-items: center; justify-content: center; }
.bchlb-img { display: block; max-width: 100%; max-height: 80vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.bchlb-close { position: absolute; top: -52px; right: 0; width: 42px; height: 42px; border-radius: 50%; border: none; background: rgba(255,255,255,0.14); color: #fff; font-size: 18px; cursor: pointer; transition: background 0.2s ease; }
.bchlb-close:hover { background: #1051af; }
.bchlb-prev, .bchlb-next { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.1); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease, border-color 0.2s ease; }
.bchlb-prev:hover, .bchlb-next:hover { background: #1051af; border-color: #1051af; }
.bchlb-prev svg, .bchlb-next svg { width: 24px; height: 24px; }
.bchlb-prev.is-hide, .bchlb-next.is-hide { visibility: hidden; }
.bchlb-cap { position: absolute; left: 0; bottom: -46px; width: 100%; display: flex; align-items: center; justify-content: center; gap: 12px; }
.bchlb-name { color: #fff; letter-spacing: -0.02em; }
.bchlb-count { color: rgba(255,255,255,0.55); }
@keyframes bchlbZoom { from { opacity: 0; transform: translate(-50%,-50%) scale(0.94); } to { opacity: 1; transform: translate(-50%,-50%) scale(1); } }


/* ===== CONSULT FORM POPUP ===== */
.cfp { position: fixed; inset: 0; z-index: 1300; display: none; }
.cfp.is-open { display: block; }
.cfp-dim { position: absolute; inset: 0; background: rgba(11,26,51,0.6); animation: bchpopFade 0.3s ease; }
.cfp-panel { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 92%; max-width: 560px; max-height: 95vh; overflow-y: auto; background: #fff; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 40px 100px rgba(0,0,0,0.4); animation: bchpopUp 0.4s cubic-bezier(0.22,1,0.36,1); }
.cfp-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 28px; background: #1b3d6e; }
.cfp-title { display: flex; align-items: center; gap: 10px; color: #fff; }
.cfp-title svg { width: 22px; height: 22px; }
.cfp-close { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; border: none; background: rgba(255,255,255,0.15); color: #fff; font-size: 16px; cursor: pointer; transition: background 0.2s; }
.cfp-close:hover { background: rgba(255,255,255,0.3); }
.cfp-body { padding: 28px; }
.cfp-note { padding: 14px 18px; border-radius: 8px; background: #fffdf5; border: 1px solid rgba(236,170,32,0.3); color: #1b3d6e; margin-bottom: 24px; }
.cfp-row { display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 14px; margin-bottom: 16px; }
.cfp-label { color: #1b3d6e; }
.cfp-req { color: #e23c3c; }
.cfp-input { width: 100%; height: 48px; padding: 0 16px; border: 1.5px solid #e2e8f0; border-radius: 6px; color: #1b3d6e; background: #f8fafc; transition: border-color 0.2s, background 0.2s; }
.cfp-input:focus { outline: none; border-color: #1051af; background: #fff; }
.cfp-check { width: 18px; height: 18px; accent-color: #1051af; }
.cfp-submit { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 18px; border-radius: 8px; border: none; background: #1051af; color: #fff; cursor: pointer; transition: background 0.25s, gap 0.25s; }
.cfp-submit span { transition: transform 0.25s; }
.cfp-submit:hover { background: #1b3d6e; }
.cfp-submit:hover span:last-child { transform: translateX(4px); }
.cfp-agree-wrap { margin: 22px 0; }
.cfp-agree { display: flex; align-items: center; gap: 8px; color: #555; cursor: pointer; }
.cfp-agree-link { padding: 0; background: none; border: none; color: #1051af; cursor: pointer; text-decoration: underline; }
.cfp-agree-detail { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, margin-top 0.35s ease; margin-top: 0; padding: 0 16px; border-radius: 6px; background: #f4f7fb; color: #666; line-height: 1.8; }
.cfp-agree-detail.is-open { max-height: 240px; margin-top: 12px; padding: 14px 16px; }


/* ===== MEDIA ROOM ===== */
.med { position: relative; width: 100%; padding: 0 0 160px; background: #fff; overflow: hidden; }
.med-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; perspective: 800px; }
.med-blob { position: absolute; border-radius: 50%; filter: blur(48px); opacity: 0.5; will-change: transform; transform: translateZ(0); }
.med-blob1 { width: 360px; height: 360px; background: rgb(16 81 175 / 11%); top: 19%; left: -40px; animation: medFloat1 16s ease-in-out infinite alternate; }
.med-blob2 { width: 280px; height: 280px; background: rgba(27,61,110,0.22); top: 40%; right: -30px; animation: medFloat2 19s ease-in-out infinite alternate; }
.med-blob3 { width: 180px; height: 180px; background: transparent; border: 1.5px dashed rgba(236,170,32,0.35); filter: none; bottom: -20px; left: 40%; animation: medFloat3 22s ease-in-out infinite alternate, medRing 30s linear infinite; }
.med-inner { position: relative; z-index: 2; margin: 0 auto; padding: 0 20px; }
.med-head { margin-bottom: 44px; opacity: 0; transform: translateY(24px); filter: blur(6px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1), filter 0.7s ease; }
.med.is-in .med-head { opacity: 1; transform: translateY(0); filter: blur(0); }
.med-eng { color: #ecaa20; letter-spacing: 0.2em; margin-bottom: 12px; }
.med-tit { letter-spacing: -0.035em; margin-bottom: 14px; }
.med-desc { color: #5e6670; line-height: 1.6; letter-spacing: -0.01em; }
.med-groups { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; align-items: stretch; }
.med-group { display: flex; flex-direction: column; min-width: 0; opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.med.is-in .med-group { opacity: 1; transform: translateY(0); }
.med.is-in .med-group:nth-child(1) { transition-delay: 0.15s; }
.med.is-in .med-group:nth-child(2) { transition-delay: 0.28s; }
.med.is-in .med-group:nth-child(3) { transition-delay: 0.41s; }
.med-group-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 16px; margin-bottom: 6px; border-bottom: 1px solid #1b3d6e; }
.med-group-tit { letter-spacing: -0.01em; }
.med-group-btn { display: inline-flex; align-items: center; gap: 18px; flex-shrink: 0; padding: 8px 12px; border: 1.5px solid #d6dde6; border-radius: 100px; color: #1b3d6e; transition: background 0.22s ease, color 0.18s ease, border-color 0.22s ease; }
.med-group-btn span { display: inline-flex; align-items: center; justify-content: center; width: 25px; height: 25px; border-radius: 50%; background: #1051af; color: #fff; transition: transform 0.3s; }
.med-group-btn:hover { background: #1051af; color: #fff; border-color: #1051af; }
.med-group-btn:hover span { background: #fff; color: #1051af; transform: rotate(90deg); }
.med-list { flex: 1; min-width: 0; }
.med-item { border-bottom: 1px solid #e8edf3; }
.med-link { display: flex; align-items: center; gap: 14px; padding: 18px 6px; transition: background 0.22s ease, padding 0.28s cubic-bezier(0.22,1,0.36,1); }
.med-link:hover { background: #f6f9fc; padding-left: 14px; }
.med-item-tit { flex: 1; min-width: 0; color: #222; letter-spacing: -0.01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 0.18s ease; }
.med-link:hover .med-item-tit { color: #1051af; }
.med-date { flex-shrink: 0; color: #9aa6b5; letter-spacing: 0.01em; }
.med-tube { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 14px; padding-top: 18px; }
.med-tube-item { position: relative; flex: 1; display: flex; align-items: center; justify-content: center; min-height: 120px; border-radius: 8px; background: linear-gradient(135deg, #eef3f9, #e3ecf6); color: #1051af; overflow: hidden; transition: transform 0.35s cubic-bezier(0.22,1,0.36,1); }
.med-tube-item:hover { transform: scale(1.02); }
.med-tube-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.med-tube-item:hover img { transform: scale(1.04); }
.med-tube-play { position: absolute; left: 50%; transform: translateX(-50%); width: 42px; height: 42px; border-radius: 50%; background: #e23c3c; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(226,60,60,0.4); }
.med-tube-play svg { width: 19px; height: 19px; fill: #fff; margin-left: 2px; }
.med-column { flex: 1; min-width: 0; padding-top: 6px; }
.med-column-link { display: flex; align-items: center; gap: 16px; padding: 14px 6px; border-bottom: 1px solid #f0f3f7; transition: padding 0.28s cubic-bezier(0.22,1,0.36,1); }
.med-column li:last-child .med-column-link { border-bottom: none; }
.med-column-link:hover { padding-left: 12px; }
.med-column-img { flex-shrink: 0; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; width: 68px; height: 52px; border-radius: 6px; background: #eef3f9; color: #8a9bb0; }
.med-column-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.med-column-txt { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.med-column-tit { color: #222; line-height: 1.4; letter-spacing: -0.01em; transition: color 0.18s ease; }
.med-column-link:hover .med-column-tit { color: #1051af; }
.med-column-date { color: #9aa6b5; }
@keyframes medFloat1 { from { transform: translateZ(-120px) translate(0,0); } to { transform: translateZ(40px) translate(40px,30px); } }
@keyframes medFloat2 { from { transform: translateZ(-180px) translate(0,0); } to { transform: translateZ(20px) translate(-30px,-40px); } }
@keyframes medFloat3 { from { transform: translateZ(-60px) translate(0,0); } to { transform: translateZ(80px) translate(20px,-30px); } }
@keyframes medRing { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }


/* ============================================================
   DETAIL — 디테일 보강 (질감 · hover · 강약)
============================================================ */

/* WHY 카드: hover 시 상승 + 미세 확대, 번호에 강조 라인 */
.biz-card { transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), border-color 0.35s ease, opacity 0.6s ease, box-shadow 0.4s ease; }
.biz-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.18), 0 28px 60px rgba(0,0,0,0.34); }
.biz-num { position: relative; padding-bottom: 6px; }
.biz-num::after { content: ""; position: absolute; left: 2px; bottom: 0; width: 26px; height: 2px; background: #ecaa20; opacity: 0.7; }

/* 제품 카드: 활성 항목에 은은한 바닥 그림자(떠 있는 느낌) */
.prd-item.is-active .prd-thumb::after { content: ""; position: absolute; left: 50%; bottom: -18px; width: 62%; height: 22px; transform: translateX(-50%); background: radial-gradient(ellipse at center, rgba(16,33,62,0.18), transparent 70%); filter: blur(4px); z-index: -1; }

/* GOV 단계 번호: hover 시 색 깊어지고 살짝 떠오름 */
.gov-step:hover .gov-step-no { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(16,81,175,0.45); transition: transform 0.3s ease, box-shadow 0.3s ease; }

/* 지점 아이템: 좌측에 강조 바(hover/active 시 자라남) */
.bch-item { position: relative; }
.bch-item::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 0; background: #1051af; border-radius: 0 3px 3px 0; transition: height 0.3s cubic-bezier(0.22,1,0.36,1); }
.bch-item:hover::before { height: 56%; }
.bch-item.is-active::before { height: 72%; background: #ecaa20; }

/* 미디어룸 그룹 헤더: 밑줄에 강조 포인트 추가 */
.med-group-head { position: relative; }
.med-group-head::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 44px; height: 2px; background: #1051af; }

/* 미디어룸 리스트 항목: hover 시 날짜가 살짝 밀림(반응 분리) */
.med-date { transition: transform 0.22s ease, color 0.22s ease; }
.med-link:hover .med-date { transform: translateX(-2px); color: #1b3d6e; }

/* CTA 버튼: hover 시 그림자 + 간격 미세 변화 */
.cta-btn:hover { box-shadow: 0 8px 22px rgba(16,81,175,0.28); gap: 14px; }



/* ===== 상시 미세 모션 (생기) ===== */
/* 메인비주얼 라벨 점: 은은한 맥동 */
.mvs-label-dot { display: inline-block; width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: #ffd11f; box-shadow: 0 0 0 0 rgba(255,209,31,0.6); animation: dotPulse 2.4s ease-in-out infinite; }
@keyframes dotPulse { 0% { box-shadow: 0 0 0 0 rgba(255,209,31,0.5); } 70% { box-shadow: 0 0 0 8px rgba(255,209,31,0); } 100% { box-shadow: 0 0 0 0 rgba(255,209,31,0); } }
/* 정부지원 금액 포인트: 아주 약한 호흡 */
.gov-point { animation: govBreath 3.5s ease-in-out infinite; }
@keyframes govBreath { 0%,100% { opacity: 1; } 50% { opacity: 0.78; } }

/* ===== 키보드 포커스 (접근성) — Tab 이동 시에만 표시 ===== */
.mvs-btn:focus-visible,
.prd-tab:focus-visible, .prd-arrow:focus-visible,
.gov-opt:focus-visible, .gov-quiz-btn:focus-visible, .gov-faq-q:focus-visible,
.bch-tab:focus-visible, .bch-loc:focus-visible, .bch-search-btn:focus-visible, .bch-item:focus-visible,
.cta-btn:focus-visible, .med-group-btn:focus-visible, .med-link:focus-visible, .med-column-link:focus-visible,
.bchpop-tab:focus-visible, .bchpop-quick-btn:focus-visible, .bchpop-close:focus-visible,
.cfp-submit:focus-visible, .cfp-close:focus-visible { outline: 2px solid #1051af; outline-offset: 3px; border-radius: 6px; }
/* 어두운 배경 위 버튼은 밝은 링 */
.mvs-btn:focus-visible { outline-color: #ffd11f; }
/* 입력 요소는 외곽선 대신 글로우 */
.bch-search-input:focus-visible, .cfp-input:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(16,81,175,0.25); }



/* ============================================================
   반응형 (RESPONSIVE)
============================================================ */

/* ===== 1024px 이하 (태블릿) ===== */
@media (max-width: 1024px) {
.mvs { height: 88vh; min-height: 560px; }
.mvs-scroll { left: 50%; transform: translateX(-50%); }

.biz { padding: 80px 0 90px; }
.biz-head { margin-bottom: 44px; }
.biz-cards { flex-wrap: wrap; }
.biz-card { flex: 1 1 calc(50% - 12px); }
.biz-card:nth-child(odd) { margin-top: 0; }

.prd { padding: 80px 0 90px; }
.prd-circle { width: 420px; height: 420px; margin-left: -210px; }
.prd-item.is-prev { transform: translate(calc(-50% - 300px),-50%) scale(0.6); }
.prd-item.is-next { transform: translate(calc(-50% + 300px),-50%) scale(0.6); }
.prd-item.is-active .prd-thumb { width: 280px; }

.cta-inner { padding: 90px 20px; }

.gov { padding: 80px 0 90px; }
.gov-head { margin-bottom: 40px; }
.gov-grid { grid-template-columns: 1fr; gap: 40px; }

.bch { padding: 80px 0 90px; }
.bch-body { grid-template-columns: 1fr; }
.bch-map { min-height: 380px; }
.bch-list { max-height: 480px; overflow-y: auto; }
.bch-head, .bch-search, .bch-tabs, .bch-body { opacity: 1; transform: none; clip-path: none; transition: none; }
.bchpop-info-grid { grid-template-columns: 1fr; gap: 20px; }
.bchpop-photo { min-height: 220px; }
.bchpop-profile { grid-template-columns: 1fr; }
.bchpop-map-grid { grid-template-columns: 1fr; }
.bchpop-map { height: 320px; }
.bchpop-facil { flex-basis: calc(50% - 8px); min-width: 0; }
.bchpop-quick-btn { flex-basis: calc(33.333% - 7px); }

.med { padding: 80px 0 90px; }
.med-groups { grid-template-columns: 1fr; gap: 36px; }
.med-head { margin-bottom: 32px; }
}

/* ===== 768px 이하 (모바일) ===== */
@media (max-width: 768px) {
.mvs-label { margin-bottom: 18px; }
.mvs-title { margin-bottom: 20px; }
.mvs-desc { margin-bottom: 32px; }
.mvs-btns { flex-direction: column; }
.mvs-btn { width: 100%; max-width: 280px; justify-content: center; }

.biz-cards { flex-direction: column; }
.biz-card { flex: 1 1 auto; }

.prd-stage { height: auto; min-height: 560px; }
.prd-item.is-prev, .prd-item.is-next { opacity: 0; pointer-events: none; }
.prd-item.is-active { width: 88%; max-width: 340px; }
.prd-item.is-active .prd-thumb { width: 240px; }
.prd-feat li { display: inline-block; padding-left: 0; margin: 0 8px; }
.prd-feat li::before { display: none; }
.prd-prev { left: 0; }
.prd-next { right: 0; }
.prd-dot { display: none; }

.cta::before { background: linear-gradient(180deg, rgba(244,248,252,0.95) 0%, rgba(244,248,252,0.7) 100%); }
.cta-inner { padding: 60px 20px; }
.cta-box { max-width: 100%; }
.cta-tit { margin-bottom: 16px; }
.cta-desc { margin-bottom: 26px; }

.gov-quiz-body { padding: 24px 20px 26px; }
.gov-q-grid { grid-template-columns: 1fr; gap: 20px; }
.gov-quiz-foot { flex-direction: column; align-items: stretch; gap: 14px; }
.gov-quiz-btn { width: 100%; }
.gov-result-btns { flex-direction: column; }

.bch-search { flex-wrap: wrap; }
.bch-search-box { flex: 1 1 100%; }
.bch-loc { flex: 1; }
.bch-search-btn { flex: 1; padding: 14px 0; }

.bchpop-head, .bchpop-tabs, .bchpop-body { padding-left: 20px; padding-right: 20px; }
.bchpop-tab { margin-right: 14px; }
.bchpop-meta { grid-template-columns: repeat(2,1fr); }
.bchpop-quick { padding: 14px 20px; }
.bchpop-quick-btn { flex-basis: calc(50% - 5px); min-width: 0; }

.cfp-row { grid-template-columns: 1fr; gap: 6px; }
.cfp-label { margin-bottom: 2px; }

.med-tube-item { min-height: 160px; }

/* 큰 제목 모바일 축소 (유틸 txtNN 덮어쓰기) */
.mvs-title { font-size: 34px; }
.biz-tit2 { font-size: 32px; }
.prd-tit { font-size: 38px; }
.cta-tit { font-size: 28px; }
.gov-tit { font-size: 28px; }
.bch-tit { font-size: 28px; }
.med-tit { font-size: 28px; }
.bchpop-title { font-size: 24px; }

.bch-list { max-height: 420px; }
.bch-map { min-height: 280px; }
/* 모바일: 카드 실시간 blur 제거(GPU 부담) → 반투명 단색 배경 */
.biz-card { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(20,40,75,0.55); }
}

/* ===== 모션 최소화 설정 사용자 대응 ===== */
@media (prefers-reduced-motion: reduce) {
.mvs-bg { animation: none; }
.mvs-label, .mvs-title, .mvs-desc, .mvs-btns, .mvs-scroll { opacity: 1; transform: none; transition: none; }
.biz-head { opacity: 1; transform: none; transition: none; }
.biz-card { opacity: 1; transform: none; transition: none; }
.biz-card-img img { transition: none; }
.prd-head, .prd-tabs { opacity: 1; transform: none; transition: none; }
.prd-item { transition: none; }
.prd-ring, .prd-circle, .prd-dot { animation: none; }
.cta-box { opacity: 1; transform: none; transition: none; }
.gov-head, .gov-quiz { opacity: 1; transform: none; transition: none; }
.gov-blur { animation: none; }
.gov-step { opacity: 1; transform: none; transition: none; }
.bch-head, .bch-search, .bch-tabs, .bch-body { opacity: 1; transform: none; transition: none; }
.med-head, .med-group { opacity: 1; transform: none; transition: none; }
.med-blob { animation: none; }
.mvs-label-dot { animation: none; }
.gov-point { animation: none; }
.gov-blur2, .med-blob3 { animation: none; }
}