/* ============================================================
   제트맨 철거 — Style System v5
   오류수정: hero overflow 제거, services 중복 제거
   ============================================================ */

:root {
    --red:       #E8230A;
    --red-dark:  #C01500;
    --red-light: #FF4D33;
    --gold:      #F59E0B;
    --kakao:     #FEE500;
    --kakao-txt: #3C1E1E;
    --dark:      #1E2230;
    --dark2:     #252A3A;
    --dark3:     #2E3448;
    --text:      #1A1D2E;
    --text-mid:  #50566E;
    --text-lt:   #8E96B4;
    --bg:        #F8F9FC;
    --bg2:       #EEF1F8;
    --bg3:       #E6EAF5;
    --white:     #ffffff;
    --border:    #DDE2EF;
    --r:         10px;
    --r-lg:      16px;
    --r-xl:      22px;
    --shadow:    0 2px 16px rgba(30,34,60,.07);
    --shadow-md: 0 8px 36px rgba(30,34,60,.13);
    --t:         all .24s cubic-bezier(.4,0,.2,1);
    --topbar-h:  58px;
    --gnb-h:     64px;
    --btn-pad:   15px 32px;
    --btn-fs:    .94rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.65;
    word-break: keep-all;
    word-wrap: break-word;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }
h1,h2,h3,h4,p,span,li { word-break: keep-all; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }

.sec-header { text-align: center; margin-bottom: 52px; }
.sec-header.left { text-align: left; }
.sec-header.light h2, .sec-header.light p { color: #fff; }
.sec-header.light .sec-tag {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.65);
    border-color: rgba(255,255,255,.14);
}
.sec-tag {
    display: inline-block;
    background: rgba(232,35,10,.07);
    color: var(--red);
    border: 1px solid rgba(232,35,10,.14);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
}
.sec-header h2 {
    font-size: clamp(1.55rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -.5px;
}
.sec-header p { font-size: .92rem; color: var(--text-mid); }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--topbar-h);
    z-index: 900;
    background: rgba(18,20,28,.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: var(--t);
}
.topbar.scrolled {
    background: rgba(14,16,22,1);
    box-shadow: 0 2px 24px rgba(0,0,0,.45);
}
.topbar-inner {
    max-width: 1160px; margin: 0 auto; padding: 0 24px;
    height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.topbar-logo { display: flex; align-items: center; gap: 9px; color: #fff; flex-shrink: 0; }
.topbar-logo img { width: 32px; height: 32px; object-fit: contain; filter: drop-shadow(0 1px 6px rgba(232,35,10,.5)); }
.topbar-logo span { font-size: 1.1rem; font-weight: 700; white-space: nowrap; }
.topbar-logo strong { color: var(--red); }
.topbar-actions { display: flex; align-items: center; gap: 8px; }
.topbar-kakao {
    display: flex; align-items: center; gap: 6px;
    background: var(--kakao); color: var(--kakao-txt);
    padding: 8px 16px; border-radius: var(--r);
    font-size: .79rem; font-weight: 700; transition: var(--t); white-space: nowrap;
}
.topbar-kakao:hover { filter: brightness(.93); }
.topbar-phone {
    display: flex; align-items: center; gap: 6px;
    background: var(--red); color: #fff;
    padding: 8px 16px; border-radius: var(--r);
    font-size: .79rem; font-weight: 700; transition: var(--t); white-space: nowrap;
}
.topbar-phone:hover { background: var(--red-dark); }

/* ============================================================
   HERO
   ✅ overflow: clip 제거 → sticky 정상 작동
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: flex-start; justify-content: center;
    background: var(--dark);
    padding-top: var(--topbar-h);
    padding-bottom: 0;
}
.hero-bg {
    position: absolute; inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(10,12,20,.88) 0%, rgba(20,12,10,.72) 50%, rgba(10,12,20,.82) 100%),
        radial-gradient(ellipse at 70% 50%, rgba(232,35,10,.18) 0%, transparent 55%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
    position: absolute; border-radius: 50%; opacity: 0;
    animation: float-p 7s infinite;
}
@keyframes float-p {
    0%   { opacity: 0; transform: translateY(100vh) scale(0); }
    10%  { opacity: .5; }
    90%  { opacity: .12; }
    100% { opacity: 0; transform: translateY(-80px) scale(1); }
}
.hero-layout {
    position: relative; z-index: 2; width: 100%;
    display: flex; flex-direction: column; align-items: center;
    padding-top: 40px; padding-bottom: 60px;
}
.hero-body {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; width: 100%; max-width: 680px;
}
.hero-symbol { margin-bottom: 22px; display: flex; animation: symbol-float 4s ease-in-out infinite; }
.hero-symbol-img {
    width: 76px; height: 76px; object-fit: contain;
    filter: drop-shadow(0 0 28px rgba(232,35,10,.55)); border-radius: 18px;
}
@keyframes symbol-float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
}
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,35,10,.1); border: 1px solid rgba(232,35,10,.25);
    color: #FF8878; padding: 6px 16px; border-radius: 100px;
    font-size: .77rem; font-weight: 600; margin-bottom: 26px;
}
.tag-dot {
    width: 6px; height: 6px; background: var(--red); border-radius: 50%;
    animation: pulse-dot 2s infinite; flex-shrink: 0;
}
@keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 0 3px rgba(255,214,0,.25); }
    50%      { box-shadow: 0 0 0 7px rgba(255,214,0,0); }
}
.hero-title {
    font-size: clamp(1.9rem, 3.2vw, 3rem); font-weight: 900;
    color: #fff; line-height: 1.18; margin-bottom: 20px;
    letter-spacing: -1.2px; text-align: center;
}
.hero-title em { color: var(--red); font-style: normal; display: block; }
.hero-desc {
    font-size: .92rem; color: rgba(255,255,255,.58);
    line-height: 1.9; margin-bottom: 28px;
}
.hero-desc strong { color: rgba(255,255,255,.9); }
.accent-gold {
    background: linear-gradient(135deg, var(--gold), #FF8C00);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; font-weight: 800;
}
.hero-stats { display: flex; align-items: center; gap: 24px; margin-bottom: 24px; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--red); line-height: 1; }
.stat-item span   { font-size: .7rem; color: rgba(255,255,255,.38); font-weight: 500; margin-top: 4px; display: block; }
.stat-sep { width: 1px; height: 30px; background: rgba(255,255,255,.1); }
.hero-badges {
    display: flex; flex-wrap: wrap; gap: 8px 28px;
    color: rgba(255,255,255,.45); font-size: .74rem; margin-bottom: 24px; justify-content: start;
}
.hero-badges span { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.hero-badges .fas { color: #4CAF50; font-size: .75rem; }
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: stretch;  /* ← 높이 동일하게 */
    margin-bottom: 28px;
    width: 100%;
}

.cta-consult {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 32px; border-radius: var(--r);
    font-size: .94rem; font-weight: 700;
    width: 100%; max-width: 340px;
    min-height: 54px;
    background: rgba(255,255,255,.08); color: #fff;
    border: 1px solid rgba(255,255,255,.18); transition: var(--t); cursor: pointer;
    backdrop-filter: blur(8px);
}
.cta-consult:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.cta-phone {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 32px; border-radius: var(--r);
    font-size: .94rem; font-weight: 700;
    width: 100%; max-width: 340px;
    min-height: 54px;
    background: var(--red); color: #fff; border: 1px solid transparent;
    box-shadow: 0 4px 18px rgba(232,35,10,.38); transition: var(--t);
}
.cta-phone:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,35,10,.5); }

/* ===== 뉴스 씬 ===== */
.nss-outer {
    width: 100%;
    background: #0a0c14;
    display: flex;
    justify-content: center;
    padding: 48px 24px;
}
.nss-frame {
    width: 100%;
    max-width: 860px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 56px rgba(0,0,0,.65),
                0 0 0 1px rgba(255,255,255,.08);
    background: #111;
    position: relative;
}
.nss-scene {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.nss-scene img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
}
.nss-caption {
    position: absolute;
    inset: auto 0 0 0;
    background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.25) 65%, transparent 100%);
    padding: 36px 16px 12px;
    pointer-events: none;
    z-index: 2;
}
.nss-caption p {
    color: rgba(255,255,255,.92);
    font-size: .8rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
}

/* NSS 재생 버튼 */
.nss-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(180, 180, 180, 0.35);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 3;
}
.nss-play-btn svg {
    width: 38px;
    height: 38px;
    margin-left: 5px;
}
.nss-scene:hover .nss-play-btn {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%) scale(1.08);
}

@media (max-width: 768px) {
    .nss-outer { padding: 24px 14px; }
    .nss-frame { border-radius: 10px; }
    .nss-caption p { font-size: .72rem; }
    .nss-play-btn { width: 60px; height: 60px; }
    .nss-play-btn svg { width: 28px; height: 28px; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap { background: var(--red); padding: 10px 0; overflow: hidden; }
.marquee-track {
    display: flex; gap: 52px; white-space: nowrap;
    animation: marquee 28s linear infinite;
}
.marquee-track span { color: #fff; font-size: .77rem; font-weight: 600; flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   SUBSIDY
   ============================================================ */
.subsidy-sec {
    padding: 88px 0; position: relative; overflow: hidden;
    background-image: url('../images/subsidy-bg.jpg');
    background-size: cover; background-position: center; background-repeat: no-repeat;
    background-attachment: fixed;
}
.subsidy-sec::before {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(8,6,2,.87) 0%, rgba(20,10,0,.78) 50%, rgba(8,6,2,.87) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(245,158,11,.2) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 25%, rgba(232,35,10,.1) 0%, transparent 45%);
    pointer-events: none;
}
.subsidy-inner {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px;
}
.subsidy-symbol { display: flex; align-items: center; justify-content: center; margin-bottom: 28px; }
.subsidy-badge-symbol {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px; border-radius: 100px;
    background: linear-gradient(135deg, rgba(160,90,20,.82) 0%, rgba(120,60,10,.90) 50%, rgba(100,50,8,.85) 100%);
    border: 1.5px solid rgba(245,158,11,.45);
    box-shadow: 0 0 32px rgba(245,158,11,.30), 0 0 64px rgba(245,158,11,.12), inset 0 1px 0 rgba(255,220,100,.18);
    animation: badge-glow 3s ease-in-out infinite;
}
@keyframes badge-glow {
    0%,100% { box-shadow: 0 0 28px rgba(245,158,11,.28), 0 0 56px rgba(245,158,11,.10), inset 0 1px 0 rgba(255,220,100,.18); transform: scale(1); }
    50%      { box-shadow: 0 0 44px rgba(245,158,11,.55), 0 0 88px rgba(245,158,11,.22), inset 0 1px 0 rgba(255,220,100,.28); transform: scale(1.03); }
}
.subsidy-badge-sparkle {
    font-size: 1rem; color: #F59E0B; line-height: 1;
    filter: drop-shadow(0 0 6px rgba(245,158,11,.8));
    animation: sparkle-spin 4s ease-in-out infinite; display: inline-block;
}
@keyframes sparkle-spin {
    0%,100% { transform: rotate(0deg) scale(1); opacity: 1; }
    25%      { transform: rotate(15deg) scale(1.15); opacity: .85; }
    50%      { transform: rotate(0deg) scale(1.05); opacity: 1; }
    75%      { transform: rotate(-15deg) scale(1.15); opacity: .85; }
}
.subsidy-badge-text {
    font-size: clamp(.95rem, 2vw, 1.15rem); font-weight: 900; color: #F9C23C;
    letter-spacing: -.02em;
    text-shadow: 0 0 16px rgba(245,158,11,.7), 0 2px 8px rgba(0,0,0,.4); white-space: nowrap;
}
.hl-yellow {
    background: linear-gradient(transparent 50%, rgba(251,191,36,.55) 50%);
    color: inherit; padding: 0 2px; border-radius: 2px; display: inline;
}
.subsidy-title-pc {
    font-size: clamp(1.45rem, 3vw, 2.2rem); font-weight: 900; color: #fff;
    margin-bottom: 14px; letter-spacing: -.4px; display: block; text-align: center;
}
.subsidy-title-mo { display: none; }
.subsidy-body p { font-size: .93rem; color: rgba(255,255,255,.56); line-height: 1.92; margin-bottom: 22px; text-align: center; }
.subsidy-body p strong { color: var(--gold); }
.subsidy-list { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-bottom: 28px; justify-content: center; }
.subsidy-list li { display: flex; align-items: center; gap: 5px; font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.75); }
.subsidy-list li .fas { color: var(--gold); font-size: .7rem; }
.subsidy-btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.btn-gold {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: linear-gradient(135deg, var(--gold), #E88C00); color: #fff;
    padding: 15px 32px; border-radius: var(--r);
    font-size: .94rem; font-weight: 700;
    width: 100%; max-width: 340px;
    min-height: 54px;
    border: none; cursor: pointer; font-family: inherit; transition: var(--t);
    box-shadow: 0 4px 16px rgba(245,158,11,.35);
}
.btn-gold:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,.48); }
/* ============================================================
   GALLERY
   ============================================================ */
.gallery-sec { background: #0E1018; padding: 80px 0 60px; overflow: hidden; }
.gallery-sec .sec-header { margin-bottom: 24px; }
.gallery-sec .sec-header h2 { color: #fff; }
.gallery-sec .sec-header p { color: rgba(255,255,255,.4); }
.gallery-sec .sec-tag { background: rgba(255,255,255,.07); color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.09); }
.gallery-filter-tabs {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; justify-content: center;
}
.gft-tab {
    padding: 7px 16px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.55); font-size: .8rem; font-weight: 600;
    cursor: pointer; transition: all .22s ease; white-space: nowrap;
}
.gft-tab:hover { border-color: rgba(232,35,10,.5); color: rgba(255,255,255,.85); background: rgba(232,35,10,.1); }
.gft-tab.active { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 2px 12px rgba(232,35,10,.4); }
.gallery-grid { transition: opacity .35s ease, transform .35s ease; overflow: hidden; }
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background: #111;
    width: 100%;  /* ← 고정 width 제거 */
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
}


@media (max-width: 768px) {
    .gallery-item {
        width: 100%;
        min-width: unset;
    }
    .gallery-item img {
        max-width: 100%;
    }
}

.gallery-item:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,.5); }
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .45s ease; pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 55%, transparent 100%);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-category-card .gallery-item-overlay {
    align-items: flex-end; justify-content: flex-start; opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.3) 45%, transparent 75%);
}
.gallery-cat-info { display: flex; flex-direction: column; padding: 16px; gap: 4px; width: 100%; }
.gallery-cat-name { font-size: 1rem; font-weight: 800; color: #fff; }
.gallery-cat-count { font-size: .72rem; color: rgba(255,255,255,.7); font-weight: 500; }
.gallery-category-card:hover .gallery-item-overlay {
    background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(232,35,10,.25) 50%, rgba(0,0,0,.4) 100%);
}
.gallery-empty { text-align: center; padding: 70px 20px; color: rgba(255,255,255,.3); }
.gallery-empty i { font-size: 3rem; display: block; margin-bottom: 16px; opacity: .25; }
.gallery-empty p { font-size: .95rem; }
.gallery-slide-track {
    display: grid;
    grid-template-rows: repeat(3, 200px);
    grid-auto-flow: column;
    grid-auto-columns: 260px;
    gap: 10px;
    width: max-content;
    padding: 4px 2px;
}


.gallery-slide-wrap::-webkit-scrollbar { height: 5px; }
.gallery-slide-wrap::-webkit-scrollbar-track { background: rgba(255,255,255,.06); border-radius: 3px; }
.gallery-slide-wrap::-webkit-scrollbar-thumb { background: rgba(232,35,10,.5); border-radius: 3px; }
.gallery-slide-wrap.grabbing { cursor: grabbing; }
.gallery-slide-wrap {
    width: 100%;
    overflow-x: scroll; /* auto → scroll 로 강제 */
    overflow-y: hidden;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(232,35,10,.45) rgba(255,255,255,.06);
    padding-bottom: 10px;
    -webkit-user-select: none;
    user-select: none; /* 드래그 중 텍스트 선택 방지 */
}


@media (max-width: 768px) {
    .gallery-slide-track { grid-template-rows: repeat(2, 140px); grid-auto-columns: 170px; gap: 8px; }
}

/* ============================================================
   GALLERY LIGHTBOX
   ============================================================ */
.gallery-lightbox {
    display: none; position: fixed; inset: 0; z-index: 3000;
    background: rgba(0,0,0,.96); backdrop-filter: blur(10px);
    flex-direction: column; align-items: center; justify-content: center;
}
.gallery-lightbox.active { display: flex; }
.glb-overlay { position: absolute; inset: 0; cursor: pointer; z-index: 0; }
.glb-close {
    position: fixed; top: 14px; right: 14px; z-index: 9999;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.15); color: #fff; font-size: .95rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border: none; transition: background .2s; box-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.glb-close:hover { background: #E8230A; }
.glb-container {
    position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center;
    width: 100%; max-width: 860px; padding: 52px 16px 16px; max-height: 100vh; overflow-y: auto;
}
.glb-main { display: flex; align-items: center; gap: 10px; width: 100%; justify-content: center; }
.glb-nav {
    flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,.1); color: #fff; font-size: .9rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border: none; transition: background .2s;
}
.glb-nav:hover { background: #E8230A; }
.glb-img-wrap { position: relative; flex: 1; max-width: 720px; }
.glb-img { width: 100%; max-height: 58vh; object-fit: contain; border-radius: 10px; box-shadow: 0 8px 48px rgba(0,0,0,.7); display: block; }
.glb-title-wrap {
    position: absolute; bottom: 0; left: 0; right: 0;
    display: flex; align-items: flex-end; pointer-events: none; opacity: 0; transition: opacity .3s;
}
.glb-title-wrap.show-title { opacity: 1; }
.glb-title {
    background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 60%, transparent 100%);
    color: #fff; width: 100%; padding: 40px 20px 14px;
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.glb-group-badge {
    display: inline-block; background: var(--red); color: #fff;
    font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 12px; white-space: nowrap;
}
.glb-label-text { font-size: .9rem; font-weight: 700; color: rgba(255,255,255,.92); flex: 1; min-width: 0; }
.glb-counter { font-size: .78rem; color: rgba(255,255,255,.5); white-space: nowrap; margin-left: auto; }
.glb-thumbs {
    display: flex; gap: 6px; margin-top: 12px; overflow-x: auto; padding: 4px 0;
    max-width: 720px; width: 100%; scrollbar-width: none;
}
.glb-thumbs::-webkit-scrollbar { display: none; }
.glb-thumb { flex-shrink: 0; width: 60px; height: 46px; border-radius: 6px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color .2s, opacity .2s; opacity: .5; }
.glb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.glb-thumb.active { border-color: var(--red); opacity: 1; }
.glb-thumb:hover { opacity: .85; }

/* ============================================================
   WHY US
   ============================================================ */
.why-sec {
    background: linear-gradient(150deg, #1A1F32 0%, #222840 60%, #1C2238 100%);
    position: relative; overflow: hidden;
}
.why-sec::before {
    content: ''; position: absolute; top: -35%; right: -12%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(232,35,10,.13) 0%, transparent 70%);
    pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 760px; margin: 0 auto; }
.why-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 8px); margin: 0 auto; width: 100%; }
.why-card {
    background: rgba(255,255,255,.04); border-radius: var(--r-lg);
    padding: 28px 20px; text-align: center; transition: var(--t);
}
.why-card:hover { background: rgba(255,255,255,.08); transform: translateY(-5px); box-shadow: 0 16px 36px rgba(0,0,0,.26); }
.why-icon {
    width: 60px; height: 60px; background: rgba(232,35,10,.15); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px; font-size: 1.45rem; color: var(--red); transition: var(--t);
}
.why-card:hover .why-icon { background: var(--red); color: #fff; }
.why-card h3 { font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.why-card p { font-size: .79rem; color: rgba(255,255,255,.45); line-height: 1.72; }
.why-card p strong { color: rgba(255,255,255,.8); }

/* ============================================================
   PROCESS
   ============================================================ */
.process-sec { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
.proc-card {
    background: var(--bg); border-radius: var(--r-lg); padding: 28px 20px; text-align: center;
    border: 1px solid var(--border); position: relative; transition: var(--t); z-index: 1;
}
.proc-card:hover { background: var(--red); transform: translateY(-5px); box-shadow: 0 16px 36px rgba(232,35,10,.26); }
.proc-num { font-size: 2.4rem; font-weight: 900; color: rgba(232,35,10,.08); line-height: 1; margin-bottom: 6px; transition: var(--t); }
.proc-card:hover .proc-num { color: rgba(255,255,255,.14); }
.proc-icon { font-size: 1.5rem; color: var(--red); margin-bottom: 10px; transition: var(--t); }
.proc-card:hover .proc-icon { color: #fff; }
.proc-card h3 { font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: 7px; transition: var(--t); }
.proc-card p { font-size: .77rem; color: var(--text-mid); line-height: 1.62; transition: var(--t); }
.proc-card:hover h3, .proc-card:hover p { color: #fff; }

/* ============================================================
   SNS
   ============================================================ */
.sns-sec { background: #EDF0F8; padding: 88px 0; }
.sns-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 760px; margin: 0 auto; }
.sns-card {
    display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px;
    background: var(--white); border-radius: var(--r-lg); padding: 28px 20px;
    text-align: center; border: 1px solid #D8DFEE; text-decoration: none; transition: var(--t);
    position: relative; overflow: hidden; min-height: 160px;
}
.sns-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.sns-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    transform: scaleX(0); transform-origin: left; transition: transform .32s ease;
}
.sns-card:hover::before { transform: scaleX(1); }
.sns-card-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; transition: var(--t); flex-shrink: 0;
}
.sns-card h3 { font-size: .92rem; font-weight: 700; color: var(--text); margin: 0; transition: var(--t); }
.sns-card p  { font-size: .78rem; color: var(--text-mid); margin: 0; transition: var(--t); }
.sns-card.sns-youtube .sns-card-icon { background: rgba(255,0,0,.08); color: #FF0000; }
.sns-card.sns-youtube::before { background: #FF0000; }
.sns-card.sns-youtube:hover { border-color: rgba(255,0,0,.2); }
.sns-card.sns-youtube:hover .sns-card-icon { background: #FF0000; color: #fff; }
.sns-card.sns-insta .sns-card-icon { background: rgba(220,39,67,.08); color: #dc2743; }
.sns-card.sns-insta::before { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sns-card.sns-insta:hover { border-color: rgba(220,39,67,.2); }
.sns-card.sns-insta:hover .sns-card-icon { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); color: #fff; }
.sns-card.sns-naver .sns-card-icon { background: rgba(3,199,90,.08); color: #03C75A; }
.sns-card.sns-naver::before { background: #03C75A; }
.sns-card.sns-naver:hover { border-color: rgba(3,199,90,.2); }
.sns-card.sns-naver:hover .sns-card-icon { background: #03C75A; color: #fff; }
.sns-card.sns-tiktok .sns-card-icon { background: rgba(0,0,0,.06); color: #000; }
.sns-card.sns-tiktok::before { background: #000; }
.sns-card.sns-tiktok:hover { border-color: rgba(0,0,0,.15); }
.sns-card.sns-tiktok:hover .sns-card-icon { background: #000; color: #fff; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-sec { background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rv-card {
    background: var(--white); border-radius: var(--r-lg); padding: 24px 20px;
    border: 1px solid var(--border); transition: var(--t);
}
.rv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rv-stars { font-size: .84rem; color: #FFC107; letter-spacing: 1px; margin-bottom: 12px; }
.rv-card > p { font-size: .82rem; color: var(--text-mid); line-height: 1.82; margin-bottom: 16px; font-style: italic; }
.rv-author { display: flex; align-items: center; gap: 10px; }
.rv-avatar {
    width: 38px; height: 38px; background: var(--bg2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-mid); font-weight: 700; font-size: .86rem; flex-shrink: 0;
}
.rv-author strong { display: block; font-size: .82rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.rv-author span { font-size: .7rem; color: var(--text-lt); }

/* ============================================================
   SERVICES ✅ 중복 제거 후 단일 정의
   ============================================================ */
.services-sec { background: #E4E9F5; padding: 80px 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.svc-card {
    background: var(--white); border-radius: var(--r-lg); padding: 28px 22px;
    border: 1px solid #D0D8EC; transition: var(--t); display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-icon {
    width: 52px; height: 52px; background: rgba(232,35,10,.08); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--red); margin-bottom: 16px;
}
.svc-card h3 { font-size: .95rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.svc-card > p { font-size: .8rem; color: var(--text-mid); line-height: 1.78; margin-bottom: 16px; flex: 1; }
.svc-list { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 7px; }
.svc-list li { font-size: .78rem; color: var(--text-mid); display: flex; align-items: center; gap: 7px; }
.svc-list li .fas { color: var(--red); font-size: .68rem; }
.svc-btn {
    display: inline-flex; align-items: center; justify-content: center; padding: 11px 0;
    background: var(--red); color: #fff; border: none; border-radius: var(--r);
    cursor: pointer; font-size: .82rem; font-weight: 700; width: 100%; transition: var(--t);
}
.svc-btn:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-sec { background: linear-gradient(150deg, #15192A 0%, #1E2438 55%, #151A2C 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-left .sec-tag { background: rgba(255,255,255,.09); color: rgba(255,255,255,.58); border-color: rgba(255,255,255,.12); }
.contact-left h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -.4px; }
.contact-left > p { font-size: .92rem; color: rgba(255,255,255,.5); line-height: 1.88; margin-bottom: 32px; }
.contact-links { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.cl-phone, .cl-kakao, .cl-subsidy {
    display: flex; align-items: center; gap: 13px; padding: 14px 16px;
    border-radius: var(--r); background: rgba(255,255,255,.05); transition: var(--t); cursor: pointer;
}
.cl-phone:hover  { background: rgba(232,35,10,.1);  transform: translateX(4px); }
.cl-kakao:hover  { background: rgba(254,229,0,.08); transform: translateX(4px); }
.cl-subsidy:hover{ background: rgba(245,158,11,.08);transform: translateX(4px); }
.cl-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; background: rgba(232,35,10,.12); color: var(--red); }
.cl-icon-gold { background: rgba(245,158,11,.14) !important; color: var(--gold) !important; }
.cl-phone > div:nth-child(2), .cl-kakao > div:nth-child(2), .cl-subsidy > div:nth-child(2) { flex: 1; }
.cl-phone strong, .cl-kakao strong, .cl-subsidy strong { display: block; color: #fff; font-size: .85rem; font-weight: 700; margin-bottom: 2px; }
.cl-phone span, .cl-kakao span, .cl-subsidy span { display: block; color: rgba(255,255,255,.5); font-size: .78rem; }
.cl-phone small, .cl-kakao small, .cl-subsidy small { display: block; color: rgba(255,255,255,.28); font-size: .68rem; margin-top: 1px; }
.cl-arrow { color: rgba(255,255,255,.18); font-size: .72rem; }
.contact-guarantees { display: flex; flex-direction: column; gap: 8px; }
.contact-guarantees div { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.44); font-size: .8rem; }
.contact-guarantees .fas { color: #4CAF50; }
.contact-guarantees strong { color: #fff; }
.contact-right { background: var(--white); border-radius: var(--r-xl); padding: 32px 28px; box-shadow: 0 20px 52px rgba(0,0,0,.22); }
.contact-right h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--bg2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: .79rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.fg input, .fg select, .fg textarea {
    width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: var(--r);
    font-size: .86rem; color: var(--text); background: #fff; transition: var(--t); outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(232,35,10,.06); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-lt); }
.fg select { appearance: none; cursor: pointer; }
.fg textarea { resize: vertical; min-height: 84px; }
.fg-check { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: .78rem; color: var(--text-mid); }
.fg-check input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--red); cursor: pointer; }
.btn-submit {
    width: 100%; background: var(--red); color: #fff; padding: 14px; border-radius: var(--r);
    font-size: .96rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 4px 16px rgba(232,35,10,.28); transition: var(--t); border: none; cursor: pointer; font-family: inherit;
}
.btn-submit:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,35,10,.4); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0C0E18; padding: 52px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.05); }
.ft-logo { display: flex; align-items: center; gap: 8px; font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 11px; }
.ft-logo strong { color: var(--red); }
.ft-brand > p { font-size: .77rem; color: rgba(255,255,255,.3); line-height: 1.8; margin-bottom: 14px; }
.ft-links h4 { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px; }
.ft-links ul { display: flex; flex-direction: column; gap: 7px; }
.ft-links a { font-size: .78rem; color: rgba(255,255,255,.3); transition: var(--t); }
.ft-links a:hover { color: #fff; padding-left: 3px; }
.ft-contact h4 { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px; }
.ft-phone, .ft-kakao { display: flex; align-items: center; gap: 6px; padding: 9px 12px; border-radius: var(--r); font-size: .82rem; font-weight: 700; margin-bottom: 6px; transition: var(--t); }
.ft-phone { background: rgba(232,35,10,.1); color: var(--red); }
.ft-phone:hover { background: var(--red); color: #fff; }
.ft-kakao { background: rgba(254,229,0,.07); color: var(--kakao); }
.ft-kakao:hover { background: var(--kakao); color: var(--kakao-txt); }
.ft-contact > p { display: flex; align-items: center; gap: 6px; font-size: .74rem; color: rgba(255,255,255,.24); margin-top: 4px; }
.footer-bottom { padding: 16px 0 calc(var(--gnb-h) + 16px); text-align: center; }
.footer-bottom p { font-size: .72rem; color: rgba(255,255,255,.16); }
.footer-sns-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.footer-sns-btn { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 8px; text-decoration: none; transition: var(--t); border: none; flex-shrink: 0; }
.footer-sns-btn.yt  { background: rgba(255,0,0,.13);    color: #c0392b; }
.footer-sns-btn.ig  { background: rgba(220,39,67,.12);  color: #c0392b; }
.footer-sns-btn.nb  { background: rgba(3,199,90,.13);   color: #039e54; }
.footer-sns-btn.tk  { background: rgba(105,201,208,.13);color: #2a9da8; }
.footer-sns-btn.yt:hover { background: #FF0000; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255,0,0,.35); }
.footer-sns-btn.ig:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; transform: translateY(-2px); }
.footer-sns-btn.nb:hover { background: #03C75A; color: #fff; transform: translateY(-2px); }
.footer-sns-btn.tk:hover { background: #010101; color: #69C9D0; transform: translateY(-2px); }

/* ============================================================
   BOTTOM GNB
   ============================================================ */
.bottom-gnb {
    position: fixed; bottom: 0; left: 0; right: 0; height: var(--gnb-h);
    display: flex; z-index: 800; box-shadow: 0 -3px 18px rgba(0,0,0,.28);
}
.bgnb-consult {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px;
    background: var(--dark3); color: #fff; font-size: .9rem; font-weight: 700;
    border: none; cursor: pointer; border-right: 1px solid rgba(255,255,255,.07);
    transition: background .2s; font-family: inherit;
}
.bgnb-consult:hover { background: #222240; }
.bgnb-consult .fas { font-size: 1rem; color: var(--red); }
.bgnb-phone {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px;
    background: var(--red); color: #fff; text-decoration: none; transition: background .2s;
}
.bgnb-phone:hover { background: var(--red-dark); }
.bgnb-phone span { font-size: .9rem; font-weight: 700; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.75); z-index: 2000;
    display: flex; align-items: center; justify-content: center; padding: 20px;
    opacity: 0; visibility: hidden; transition: var(--t); backdrop-filter: blur(4px);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
    background: #fff; border-radius: var(--r-xl); width: 100%; max-width: 520px;
    position: relative; transform: scale(.92) translateY(16px); transition: var(--t);
    max-height: 92vh; overflow: hidden; display: flex; flex-direction: column;
}
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }
.modal-close {
    position: absolute; top: 10px; right: 10px; z-index: 100;
    width: 34px; height: 34px; background: rgba(255,255,255,.97); border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,.18); display: flex; align-items: center; justify-content: center;
    color: var(--text-mid); font-size: .85rem; transition: background var(--t), color var(--t); border: none; cursor: pointer;
}
.modal-close:hover { background: var(--red); color: #fff; }
.modal-inner { padding: 48px 26px 28px; flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.modal-head { text-align: center; margin-bottom: 20px; }
.modal-head h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 3px; }
.modal-head p  { font-size: .79rem; color: var(--text-mid); }
.modal-success { text-align: center; padding: 24px 10px 10px; }
.modal-success h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }

/* ============================================================
   PHOTO GUIDE
   ============================================================ */
.photo-guide {
    display: flex; align-items: center; gap: 12px;
    background: linear-gradient(135deg, rgba(245,158,11,.06), rgba(245,158,11,.03));
    border: 1.5px dashed rgba(245,158,11,.35); border-radius: var(--r); padding: 14px 16px; margin-bottom: 14px;
}
.photo-guide-icon {
    width: 40px; height: 40px; background: rgba(245,158,11,.12); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--gold); flex-shrink: 0;
}
.photo-guide-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.photo-guide-sentence { font-size: .82rem; font-weight: 600; line-height: 1.6; color: var(--text); word-break: keep-all; }
.pg-em       { color: var(--text); font-weight: 900; text-decoration: underline; text-underline-offset: 2px; }
.pg-phone-em { color: var(--red) !important; font-weight: 900; }
.pg-kakao-em { color: #F57C00 !important; font-weight: 900; }
.photo-guide-btns { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.photo-guide-copy {
    display: inline-flex; align-items: center; gap: 5px; font-weight: 700; font-size: .76rem; color: var(--red);
    background: rgba(232,35,10,.07); padding: 5px 11px; border-radius: 100px;
    border: none; cursor: pointer; font-family: inherit; transition: var(--t); white-space: nowrap;
}
.photo-guide-copy:hover { background: var(--red); color: #fff; }
.photo-guide-copy.copied { background: #4CAF50; color: #fff; }
.photo-guide-link {
    display: inline-flex; align-items: center; gap: 4px; font-weight: 700; font-size: .76rem;
    text-decoration: none; color: var(--red); background: rgba(232,35,10,.07);
    padding: 4px 9px; border-radius: 100px; transition: var(--t); white-space: nowrap;
}
.photo-guide-link:hover { background: var(--red); color: #fff; }
.photo-guide-link--kakao { color: #3C1E1E; background: rgba(254,229,0,.25); }
.photo-guide-link--kakao:hover { background: #FEE500; color: #3C1E1E; }
.photo-guide-lg { padding: 18px 20px; gap: 16px; margin-bottom: 14px; }
.photo-guide-lg .photo-guide-icon { width: 48px; height: 48px; font-size: 1.3rem; border-radius: 12px; }
.photo-guide-lg .photo-guide-sentence { font-size: .88rem; }

/* ============================================================
   FORM VALIDATION
   ============================================================ */
.fg label, .fg-check label { color: var(--text); font-weight: 500; transition: color .2s; }
.fg.field-error, .fg-check.field-error {
    background: #E0F4FF; border-radius: var(--r); padding: 8px 10px 6px;
}
.fg.field-error input, .fg.field-error select, .fg.field-error textarea {
    border-color: #4FC3F7 !important; background: #F0FAFF !important; box-shadow: 0 0 0 2.5px rgba(79,195,247,.3) !important;
}
.fg.field-error > label, .fg-check.field-error > label { color: var(--red) !important; font-weight: 700 !important; }
.field-msg { display: none; font-size: .72rem; color: var(--red); font-weight: 600; margin-top: 3px; padding-left: 2px; }
.fg.field-error .field-msg, .fg-check.field-error .field-msg { display: block; }
.fg.field-ok, .fg-check.field-ok { background: transparent; padding: 0; }
.fg.field-ok input, .fg.field-ok select, .fg.field-ok textarea { border-color: var(--border) !important; background: var(--bg) !important; box-shadow: none !important; }
#fg-s-service.field-error input, #fg-s-service.field-ok input { background: #FFFBEA !important; border-color: #F59E0B !important; box-shadow: none !important; }

/* ============================================================
   SHAKE
   ============================================================ */
@keyframes shake {
    0%,100% { transform: translateX(0); }
    10%,50%,90% { transform: translateX(-6px); }
    30%,70% { transform: translateX(6px); }
}
.shake { animation: shake 0.45s cubic-bezier(.36,.07,.19,.97) both; }

/* ============================================================
   SUBSIDY 스크롤 텍스트 애니메이션
   ============================================================ */
.subsidy-scroll-text { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.subsidy-scroll-text.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE ≤1024px
   ============================================================ */
@media (max-width: 1024px) {
    .hero-title { font-size: clamp(1.75rem, 2.8vw, 2.6rem); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; margin: 0; }
    .why-card:last-child { grid-column: span 2; max-width: 50%; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .topbar-phone span { display: none; }
}

/* ============================================================
   RESPONSIVE ≤768px
   ============================================================ */
@media (max-width: 768px) {
    :root { --topbar-h: 52px; --gnb-h: 60px; }
    section { padding: 60px 0; }
    .hero-layout { padding-top: 20px; padding-bottom: 20px; }
    .hero-body { align-items: center; text-align: center; }
    .hero-symbol { justify-content: center; margin-bottom: 16px; }
    .hero-symbol-img { width: 64px; height: 64px; }
    .hero-title { font-size: 1.8rem; letter-spacing: -.8px; }
    .hero-desc { font-size: .88rem; }
    .hero-stats { gap: 16px; justify-content: center; }
    .stat-item strong { font-size: 1.4rem; }
    .hero-cta { flex-direction: column; align-items: center; width: 100%; padding: 0 20px; }
    .hero-badges { display: grid; grid-template-columns: 1fr 1fr; justify-items: start; justify-content: center; font-size: .71rem; gap: 8px 24px; }
.cta-phone, .cta-consult {
    padding: 15px 32px;
    font-size: .94rem;
    width: 100%;
    max-width: 100%;
    min-height: 54px;
}
    .btn-gold { padding: 15px 32px; font-size: .94rem; }
    .topbar-kakao span { display: none; }
    .topbar-phone span { display: none; }
    .topbar-kakao, .topbar-phone { padding: 0; width: 38px; height: 38px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; gap: 0; flex-shrink: 0; }
    .topbar-phone .fas { margin: 0; font-size: .9rem; }
    .topbar-kakao svg { width: 18px; height: 18px; }
    .subsidy-title-pc { display: none; }
    .subsidy-title-mo { display: block; font-size: clamp(1.35rem, 5vw, 2rem); font-weight: 900; color: #fff; margin-bottom: 14px; }
    .subsidy-inner { flex-direction: column; gap: 20px; text-align: center; }
    .subsidy-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; justify-items: center; }
    .subsidy-btns { justify-content: center; flex-direction: column; align-items: center; }
    .btn-gold { width: 100%; max-width: 320px; justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; margin: 0; }
    .why-card:last-child { grid-column: span 2; max-width: 100%; margin: 0 auto; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-right { padding: 22px 16px; }
    .gallery-item-overlay { opacity: 1; }
    .gallery-filter-tabs { flex-wrap: nowrap; overflow-x: auto; gap: 6px; margin-bottom: 18px; padding-bottom: 4px; justify-content: flex-start; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .gallery-filter-tabs::-webkit-scrollbar { display: none; }
    .gft-tab { padding: 6px 12px; font-size: .74rem; flex-shrink: 0; }
    .glb-container { padding: 44px 8px 8px; }
    .glb-nav { width: 36px; height: 36px; }
    .glb-img { max-height: 52vh; }
    .glb-thumb { width: 48px; height: 36px; }
    .sns-grid { max-width: 100%; gap: 12px; }
    .sns-card { padding: 22px 16px; min-height: 140px; }
    .sns-card-icon { width: 48px; height: 48px; }
}

/* ============================================================
   RESPONSIVE ≤480px
   ============================================================ */
@media (max-width: 480px) {
    .wrap { padding: 0 14px; }
    .hero-title { font-size: 1.6rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .cta-phone, .cta-consult { width: 100%; justify-content: center; max-width: 300px; }
    .btn-gold { padding: 14px 22px; font-size: .9rem; }
    .hero-badges { font-size: .67rem; gap: 7px 20px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .proc-card { padding: 18px 12px; }
    .proc-num { font-size: 1.8rem; }
    .modal-inner { padding: 48px 15px 22px; overflow-y: auto; }
    .contact-right { padding: 18px 14px; }
    .topbar-logo span { font-size: .95rem; }
    .topbar-kakao, .topbar-phone { width: 34px; height: 34px; }
    .hero-stats { gap: 12px; }
    .stat-item strong { font-size: 1.3rem; }
    .reviews-grid { gap: 12px; }
    .subsidy-list { grid-template-columns: 1fr 1fr; gap: 7px; }
    .sns-card { padding: 18px 14px; min-height: 120px; gap: 10px; }
    .sns-card-icon { width: 44px; height: 44px; border-radius: 10px; }
    .sns-card h3 { font-size: .86rem; }
    .footer-sns-btns { gap: 6px; }
    .footer-sns-btn { width: 32px; height: 32px; border-radius: 7px; }
    .photo-guide { padding: 12px 14px; gap: 10px; }
    .photo-guide-lg { padding: 14px 14px; }
    .photo-guide-icon { width: 36px; height: 36px; font-size: 1rem; }
    .photo-guide-sentence { font-size: .78rem; }
    .photo-guide-lg .photo-guide-sentence { font-size: .82rem; }
    .photo-guide-link { font-size: .7rem; padding: 3px 7px; }
}
