/* =============================================================================
   역곡지구 하우스토리 입주예정자협의회 - 통합 스타일시트 (style.css)
   
   [구조 목차]
   1. THEME TOKENS & ROOT VARIABLES (공통 색상 & 디자인 토큰)
   2. COMMON SPACING, RADII & SHADOWS (공통 간격, 반경, 그림자)
   3. RESET & GLOBAL BASE (초기화 및 전역 기반 설정)
   4. COMMON TYPOGRAPHY (공통 폰트 및 텍스트 위계)
   5. COMMON BUTTONS & INTERACTION (공통 버튼 및 상호작용)
   6. COMMON CARDS & CONTAINERS (공통 카드 및 모듈 컨테이너)
   7. COMMON BADGES & UTILITIES (공통 뱃지 및 상태 유틸리티)
   8. COMMON LAYOUT (헤더, 네비게이션, 푸터, 서브 헤더)
   9. PAGE-SPECIFIC DESIGNS (페이지별 특수 디자인)
      9-1. 메인 홈 (Hero, D-Day, Quick Menu, Progress, Delegation, Banner)
      9-2. 주요 일정 & 타임라인 (Timeline, Indicator)
      9-3. 공사현황 & 대시보드 & 슬라이드쇼 (Progress, Table, Slideshow)
      9-4. 자주 묻는 질문 (FAQ Accordion)
      9-5. 가입신청서 및 위임동의서 (Agreement Form & Signature Modal)
      9-6. 각종 계산기 (Calculator & Result Sheet)
      9-7. 세대 평면도 & 의견공유 (Floorplan & Comments)
      9-8. 공통 상세 뷰어 (Notion Body Content & Download Box)
      9-9. 커뮤니티 가이드, 협의회 소개, 링크 모음 (Guides, Association, Links)
  10. ANIMATIONS & KEYFRAMES (공통 키프레임 애니메이션)
  11. UNIFIED RESPONSIVE MEDIA QUERIES (통합 반응형 미디어 쿼리)
============================================================================= */


/* =========================================================
   1. THEME TOKENS & ROOT VARIABLES (공통 색상)
   ※ 나중에 테마를 변경할 때는 이 영역의 색상값만 교체하면
      사이트 전체의 톤앤매너가 한 번에 변경됩니다.
========================================================= */
:root {
    color-scheme: light;

    /* 1-1. 브랜드 및 프라이머리 컬러 (테마의 핵심 컬러) */
    --primary: #6f9fe8;
    --primary-dark: #527fc9;
    --primary-deep: #466795;
    --primary-light: #dceaff;
    --primary-tint: #f0f5ff;
    --primary-gradient: linear-gradient(135deg, #7ea9e7 0%, #91b9ee 48%, #a9b9ed 100%);
    --primary-gradient-btn: linear-gradient(135deg, #8db6e9, #9d91d7);

    /* 1-2. 세컨더리 & 악센트 팔레트 */
    --secondary: #b9a9ee;
    --secondary-light: #eee9ff;
    --mint: #91d9c4;
    --mint-dark: #0ca678;
    --mint-light: #e3f7f0;
    --yellow: #ffe49a;
    --yellow-dark: #d97706;
    --yellow-light: #fff8e6;
    --pink: #ffc9d8;
    --red: #e03131;
    --red-light: #fff5f5;

    /* 1-3. 텍스트 위계 컬러 */
    --text-strong: #1e293b;
    --text-title: #465268;
    --text-body: #394354;
    --text-sub: #475569;
    --text-muted: #64748b;
    --text-light: #788398;
    --text-caption: #94a3b8;

    /* 1-4. 서피스 및 배경 컬러 */
    --bg-main: #f7f8fc;
    --bg-card: #ffffff;
    --bg-card-alpha: rgba(255, 255, 255, 0.95);
    --bg-sub: #f8fafc;
    --bg-input: #ffffff;

    /* 1-5. 테두리 및 구분선 컬러 */
    --border-light: #e2e8f0;
    --border-subtle: #edf1f7;
    --border-card: rgba(222, 228, 241, 0.65);
    --border-card-hover: #93c5fd;

    /* 1-6. 하위 호환성 유지용 별칭 변수 (Legacy Aliases) */
    --blue: var(--primary);
    --blue-dark: var(--primary-dark);
    --blue-light: var(--primary-light);
    --lavender: var(--secondary);
    --lavender-light: var(--secondary-light);
    --text: var(--text-body);
    --white: #ffffff;
    --bg: var(--bg-main);
}


/* =========================================================
   2. COMMON SPACING, RADII & SHADOWS (공통 간격 & 형태 변수)
========================================================= */
:root {
    /* 공통 둥글기 (Border Radius) */
    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* 공통 입체 그림자 (Shadows) */
    --shadow-sm: 0 2px 8px rgba(93, 115, 155, 0.08);
    --shadow-md: 0 4px 18px rgba(93, 115, 155, 0.08), 0 1px 3px rgba(93, 115, 155, 0.04);
    --shadow: 0 12px 30px rgba(93, 115, 155, 0.12), 0 3px 8px rgba(93, 115, 155, 0.08);
    --shadow-hover: 0 20px 40px rgba(93, 115, 155, 0.18), 0 6px 12px rgba(93, 115, 155, 0.10);
    --shadow-btn: 0 6px 16px rgba(111, 159, 232, 0.25);
}


/* =========================================================
   3. RESET & GLOBAL BASE (초기화 및 전역 기반 설정)
========================================================= */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    -webkit-tap-highlight-color: transparent;
}

html { 
    scroll-behavior: smooth; 
}

/* JS 등속 스크롤 충돌 방지 (일정 페이지 전용) */
body.schedule-page,
body.schedule-page html {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--font-family-base, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif);
    background: radial-gradient(circle at 5% 15%, rgba(202, 221, 255, 0.45) 0, transparent 220px),
                radial-gradient(circle at 95% 35%, rgba(234, 222, 255, 0.45) 0, transparent 250px),
                radial-gradient(circle at 20% 75%, rgba(218, 247, 238, 0.45) 0, transparent 230px), var(--bg-main);
    color: var(--text-body); 
    line-height: 1.6; 
    overflow-x: hidden;
}

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

button { 
    font-family: inherit; 
    border: none;
    background: none;
    cursor: pointer;
}

a, button, input, select, textarea, label {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    outline: none;
    touch-action: manipulation;
}

a, button, .quick-item, .notice-card, .tl-item, .info-card, .faq-item, .tab-btn {
    -webkit-user-select: none;
    user-select: none;
}

img, .quick-icon, .social-icon, .logo-mark {
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
}


/* =========================================================
   4. COMMON TYPOGRAPHY (공통 폰트 및 텍스트 위계)
========================================================= */
:root {
    --font-family-base: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
}

.sub-page-header { 
    padding: 55px 24px 38px; 
    text-align: center; 
    /* 메인 히어로 톤을 은은하게 계승하는 상단 앰비언트 파스텔 그라데이션 */
    background: radial-gradient(ellipse at 50% -10%, rgba(210, 228, 255, 0.6) 0%, rgba(235, 228, 255, 0.3) 55%, transparent 85%);
    margin-bottom: 10px;
}

.sub-page-title { 
    font-size: 32px; 
    font-weight: 900; 
    color: var(--text-title); 
    letter-spacing: -0.8px;
    margin-bottom: 10px; 
    word-break: keep-all; 
}

.sub-page-desc { 
    font-size: 15px; 
    color: var(--text-light); 
    word-break: keep-all; 
    line-height: 1.6;
}

.section-title { 
    font-size: 25px; 
    font-weight: 900; 
    letter-spacing: -1px; 
    color: var(--text-title); 
    position: relative; 
}

.section-title::before { 
    content: ""; 
    display: inline-block; 
    width: 8px; 
    height: 25px; 
    border-radius: 10px; 
    margin-right: 10px; 
    vertical-align: -3px; 
    background: linear-gradient(180deg, #82b2ee, #b4a5e9); 
    box-shadow: 0 4px 8px rgba(120, 145, 200, 0.20); 
}

.section-sub-title { 
    font-size: 20px; 
    font-weight: 900; 
    color: var(--text-title); 
    letter-spacing: -0.5px; 
    margin-bottom: 20px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.section-sub-title::before { 
    content: ''; 
    display: inline-block; 
    width: 7px; 
    height: 22px; 
    background: linear-gradient(180deg, #82b2ee, #b4a5e9); 
    border-radius: 10px; 
    box-shadow: 0 3px 8px rgba(120, 145, 200, 0.2); 
}

.more { 
    font-size: 13px; 
    color: #8190a9; 
    font-weight: 700; 
    transition: color 0.2s ease; 
}

.more:hover { 
    color: #5c82c5; 
}


/* =========================================================
   5. COMMON BUTTONS & INTERACTION (공통 버튼 및 상호작용)
========================================================= */
button:active,
.btn-submit:active,
.quick-item:active,
.notice-card:active,
.tl-item:active,
.info-card:active,
.tab-btn:active {
    transform: scale(0.97) !important;
    transition: transform 0.1s ease !important;
}

/* 공유하기 링크 버튼 */
.btn-share-link {
    padding: 6px 12px;
    background: var(--primary-tint);
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 800;
    color: #2563eb;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.08);
    transition: background 0.2s ease, transform 0.2s ease;
}
.btn-share-link:hover { 
    background: #dbeafe; 
    transform: translateY(-1px); 
}

/* 뒤로가기 버튼 */
.back-btn { 
    display: inline-block; 
    margin-top: 40px; 
    padding: 12px 24px; 
    background: #f0f4f8; 
    color: #53627e; 
    font-weight: 700; 
    border-radius: var(--radius-md); 
    transition: all 0.2s; 
    text-decoration: none; 
}
.back-btn:hover { 
    background: var(--border-light); 
    transform: translateY(-2px); 
}

/* 기본 폼 전송 버튼 */
.btn-submit { 
    background: var(--primary-gradient); 
    color: #fff; 
    border: none; 
    width: 100%; 
    padding: 18px; 
    font-size: 18px; 
    font-weight: 900; 
    border-radius: 14px; 
    cursor: pointer; 
    box-shadow: 0 6px 16px rgba(126, 169, 231, 0.25); 
    transition: transform 0.2s, box-shadow 0.2s; 
}
.btn-submit:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 20px rgba(126, 169, 231, 0.35); 
}


/* =========================================================
   6. COMMON CARDS & CONTAINERS (공통 카드 및 컨테이너)
========================================================= */
.section { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 22px 24px; /* 기존 43px에서 22px로 상하 간격 1/2 축소 */
}

.section-header { 
    display: flex; 
    align-items: flex-end; 
    justify-content: space-between; 
    margin-bottom: 22px; 
}

/* 수평 스크롤 공지 카드 리스트 */
.notice-list { 
    display: flex; 
    gap: 16px; 
    overflow-x: auto; 
    padding: 10px 40px 38px 15px; 
    scrollbar-width: none; 
}
.notice-list::-webkit-scrollbar { display: none; }

.notice-card {
    flex: 0 0 calc((100% - 32px) / 3);
    min-height: 138px;
    padding: 22px;
    /* 은은한 파스텔 스카이 틴트 그라데이션 및 톤온톤 테두리 적용 */
    background: linear-gradient(145deg, #ffffff 20%, #f1f6fe 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(195, 215, 245, 0.75);
    box-shadow: var(--shadow);
    position: relative !important; 
    overflow: hidden; 
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.notice-card::after { 
    content: ""; 
    position: absolute; 
    width: 90px; 
    height: 90px; 
    border-radius: 50%; 
    background: rgba(237, 244, 255, 0.85); 
    right: -30px; 
    bottom: -30px; 
    pointer-events: none;
    z-index: 0; 
}
.notice-card > * { 
    position: relative; 
    z-index: 1; 
}
.notice-card:hover { 
    transform: translateY(-5px); 
    box-shadow: var(--shadow-hover); 
}
.notice-card h3 { 
    font-size: 16px; 
    line-height: 1.45; 
    font-weight: 800; 
    color: #4c586d; 
    margin-bottom: 4px; 
}
.notice-subtitle { 
    font-size: 12px; 
    color: var(--text-light); 
    margin-bottom: 12px; 
    font-weight: 500; 
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical; 
    overflow: hidden; 
}
.notice-date { 
    font-size: 12px; 
    color: #9aa5b7; 
    margin-top: auto; 
}

/* 그리드 레이아웃 공지 목록 */
.notice-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    max-width: 1200px; 
    margin: 0 auto 60px; 
    padding: 0 24px; 
}

/* 컨텐츠 공통 화이트 박스 */
.content-box {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}


/* =========================================================
   7. COMMON BADGES & UTILITIES (공통 뱃지 및 상태 유틸리티)
========================================================= */
/* 뉴 뱃지 & 레드 펄스 닷 */
.badge-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff4d4f, #f5222d);
    padding: 3px 6px;
    border-radius: var(--radius-xs);
    margin-left: 8px;
    vertical-align: middle;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(245, 34, 45, 0.35);
    animation: badgePulse 1.8s infinite ease-in-out;
    flex-shrink: 0;
    will-change: transform, opacity;
}

.quick-new-dot {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    background: #ff4d4f;
    border: 1.5px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 77, 79, 0.8);
    animation: badgePulse 1.8s infinite ease-in-out;
    z-index: 5;
    pointer-events: none;
    will-change: transform, opacity;
}

.card-new-dot {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 8px;
    height: 8px;
    background: #ff4d4f;
    border: 1.5px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 77, 79, 0.8);
    animation: badgePulse 1.8s infinite ease-in-out;
    z-index: 5;
    pointer-events: none;
    will-change: transform, opacity;
}

.inline-new-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #ff4d4f;
    border: 1px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 77, 79, 0.8);
    animation: badgePulse 1.8s infinite ease-in-out;
    margin-left: 6px;
    vertical-align: middle;
    will-change: transform, opacity;
}

/* 컬러별 뱃지 스타일 */
.notice-badge { 
    display: inline-block; 
    padding: 4px 9px; 
    border-radius: 10px; 
    font-size: 11px; 
    font-weight: 800; 
    margin-bottom: 9px; 
    align-self: flex-start; 
}
.detail-badge { 
    display: inline-block; 
    padding: 4px 10px; 
    border-radius: var(--radius-xs); 
    font-size: 12px; 
    font-weight: 800; 
}

.badge-blue { background: #e9f0ff !important; color: #6b8fc9 !important; }
.badge-purple { background: #eee8ff !important; color: #8a79c7 !important; }
.badge-mint { background: #e5f7f0 !important; color: #5eaa91 !important; }
.badge-sky { background: #eef4ff !important; color: #3b82f6 !important; }
.badge-indigo { background: #eef2ff !important; color: #6366f1 !important; }
.badge-red { background: var(--red) !important; color: #ffffff !important; }
.badge-green { background: var(--mint-dark) !important; color: #ffffff !important; }
.badge-neutral { background: #f1f5f9 !important; color: var(--text-muted) !important; border: 1px solid var(--border-light) !important; }

.badge-corner-right { position: absolute; top: 14px; right: 14px; margin: 0 !important; }
.badge-corner-right-wide { position: absolute; top: 18px; right: 20px; margin: 0 !important; }
.tag-important { color: var(--red); font-size: 12px; font-weight: 800; margin-right: 5px; }

/* 상태 및 헬퍼 유틸리티 */
.state-empty { text-align: center; padding: 50px 20px; color: var(--text-light); font-size: 14px; width: 100%; }
.state-error { text-align: center; padding: 50px 20px; color: var(--red); font-size: 14px; font-weight: 700; width: 100%; }
.grid-col-all { grid-column: 1 / -1; }
.pos-rel { position: relative !important; }
.back-btn-wrap { text-align: center; margin-bottom: 80px; }
.input-center { text-align: center; }
.form-unit { font-weight: 800; color: var(--text-sub); }
.file-warn-box { color: var(--red); font-weight: 800; font-size: 13px; margin-top: 6px; padding: 8px 12px; background: #fff5f5; border-radius: var(--radius-xs); border: 1px solid #ffe3e3; }
.file-upload-title { font-weight: 800; color: #4e617f; font-size: 15px; }
.file-upload-sub { font-size: 13px; margin-top: 6px; color: var(--text-light); }
.file-name-txt { font-size: 13px; color: var(--mint-dark); margin-top: 8px; font-weight: 700; text-align: center; }
.term-title { text-align: center; font-size: 16px; margin-bottom: 20px; color: #334155; }
.term-section-title { text-align: center; font-size: 16px; margin-bottom: 20px; color: #334155; }
.submit-guide-txt { color: var(--text-muted); font-size: 15px; margin-bottom: 10px; }
.flex-between-center { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.nowrap-txt { white-space: nowrap; }
.txt-underline { text-decoration: underline; }

.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px; }
.mb-25 { margin-bottom: 25px; }
.mt-10 { margin-top: 10px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px !important; }
.display-none { display: none; }


/* =========================================================
   8. COMMON LAYOUT (헤더, 네비게이션, 푸터, 서브 헤더)
========================================================= */
#header-container { min-height: 72px; display: block; }

header { 
    height: 72px; 
    background: rgba(255, 255, 255, 0.90); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px); 
    border-bottom: 1px solid rgba(190, 204, 229, 0.35); 
    display: flex; 
    align-items: center; 
    position: relative; 
    z-index: 100; 
    box-shadow: 0 4px 18px rgba(93, 115, 155, 0.07); 
}
.header-inner { 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 24px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
}
.logo { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-weight: 800; 
    font-size: 17px; 
    color: #4e617f; 
    white-space: nowrap; 
}
.logo-mark { 
    width: 35px; 
    height: 35px; 
    border-radius: 13px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: linear-gradient(135deg, #8eb7f3, #a99bea); 
    color: white; 
    font-size: 17px; 
    font-weight: 900; 
    box-shadow: 0 6px 12px rgba(111, 159, 232, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.5); 
    transform: rotate(-4deg); 
}
.logo-mark-img { overflow: hidden; padding: 0; background: none !important; }
.logo-mark-img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }

.header-right { display: flex; align-items: center; gap: 22px; }
nav { display: flex; align-items: center; gap: 25px; transition: all 0.3s ease; }
nav a { 
    font-size: 14px; 
    font-weight: 700; 
    color: #6d7890; 
    position: relative; 
    transition: color 0.25s ease, transform 0.25s ease; 
}
nav a::after { 
    content: ""; 
    position: absolute; 
    left: 50%; 
    bottom: -7px; 
    width: 0; 
    height: 3px; 
    border-radius: 10px; 
    background: linear-gradient(90deg, #83b3f3, #b7a7ee); 
    transform: translateX(-50%); 
    transition: width 0.25s ease; 
}
nav a:hover, nav a.active { color: #5d81c0; transform: translateY(-1px); }
nav a:hover::after, nav a.active::after { width: 22px; }

/* 소셜 링크 */
.social-links { display: flex; align-items: center; gap: 9px; }
.social-link { 
    width: 32px; 
    height: 32px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: transparent; 
    border: none; 
    transition: transform 0.25s ease, filter 0.25s ease; 
}
.social-link:hover { transform: translateY(-3px) rotate(-2deg); filter: brightness(1.04); }
.social-icon { 
    width: 30px; 
    height: 30px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 10px; 
    font-size: 17px; 
    font-weight: 900; 
    box-shadow: 0 5px 10px rgba(80, 100, 140, 0.16), inset 0 1px 2px rgba(255, 255, 255, 0.65); 
    transition: transform 0.25s ease, box-shadow 0.25s ease; 
}
.social-link:hover .social-icon { 
    transform: scale(1.08); 
    box-shadow: 0 8px 16px rgba(80, 100, 140, 0.20), inset 0 1px 2px rgba(255, 255, 255, 0.7); 
}
.naver { background: #03c75a; color: white; }
.kakao { background: #fee500; color: #3a1d1d; }
.insta { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; }

#mobile-menu-btn { 
    display: none; 
    background: none; 
    border: none; 
    cursor: pointer; 
    flex-direction: column; 
    gap: 5px; 
    padding: 5px; 
    width: 30px; 
}
#mobile-menu-btn span { 
    display: block; 
    width: 100%; 
    height: 2px; 
    background-color: #6d7890; 
    border-radius: 2px; 
    transition: all 0.3s; 
}

/* 푸터 (절단선 및 인위적 색상 띠 완전 제거, 자연스러운 투명 페이드) */
.footer-wrap { 
    background: linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.6) 50%, var(--bg-sub) 100%); 
    border-top: none; 
    padding: 40px 24px 60px; 
    color: var(--text-muted); 
    font-size: 13px; 
    line-height: 1.6; 
    margin-top: 20px; 
}
.footer-inner { max-width: 1000px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #eef2f6; padding-bottom: 20px; margin-bottom: 25px; }
.footer-logo { font-size: 18px; font-weight: 900; color: #334155; letter-spacing: -0.5px; }
.footer-top .social-links { display: flex; gap: 12px; align-items: center; }
.footer-links { display: flex; gap: 15px; margin-bottom: 20px; font-weight: 800; flex-wrap: wrap; }
.footer-links a { color: var(--text-sub); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #6c96d7; }
.footer-links span { color: #cbd5e1; }
.footer-info { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 8px; color: var(--text-light); }
.footer-info strong { color: var(--text-sub); }
.footer-info span.divider { color: #cbd5e1; font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 30px; flex-wrap: wrap; gap: 15px; }
.footer-copy { color: var(--text-caption); font-size: 12px; }
.footer-maker { 
    font-weight: 800; 
    color: var(--text-title); 
    background: #fff; 
    padding: 8px 16px; 
    border-radius: var(--radius-md); 
    border: 1px solid var(--border-light); 
    box-shadow: var(--shadow-sm); 
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
}
/* 💡 [푸터 문의 및 건의 미니 박스] */
.footer-contact-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(93, 115, 155, 0.04);
}
.footer-contact-box .contact-desc {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}
.footer-contact-box .contact-action {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.footer-contact-box .mail-badge {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-sub);
    background: #f1f5f9;
    padding: 4px 9px;
    border-radius: var(--radius-xs);
    letter-spacing: -0.2px;
}
.footer-contact-box .contact-email {
    font-weight: 700;
    color: #4f7cc3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    transition: color 0.2s ease;
}
.footer-contact-box .contact-email svg {
    stroke: #4f7cc3;
    transition: stroke 0.2s ease;
}
.footer-contact-box .contact-email:hover {
    color: #2563eb;
    text-decoration: underline;
}
.footer-contact-box .contact-email:hover svg {
    stroke: #2563eb;
}
.footer-maker span { color: #6c96d7; }


/* =========================================================
   9. PAGE-SPECIFIC DESIGNS (페이지별 특수 디자인)
========================================================= */

/* ---------------------------------------------------------
   9-1. 메인 홈 (Hero, D-Day, Quick Menu, Progress, Delegation)
--------------------------------------------------------- */
.hero { 
    min-height: 430px; 
    position: relative; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    background: radial-gradient(circle at 10% 25%, rgba(255, 255, 255, 0.20) 0, transparent 120px), 
                radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.18) 0, transparent 150px), 
                var(--primary-gradient); 
    color: white; 
}
.hero::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); top: -190px; right: -100px; }
.hero::after { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; background: rgba(255, 255, 255, 0.07); bottom: -160px; left: -70px; }
.hero-inner { width: 100%; max-width: 1200px; margin: 0 auto; padding: 70px 24px; position: relative; z-index: 2; }
.hero-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 7px; 
    padding: 8px 15px; 
    border-radius: 30px; 
    background: rgba(255, 255, 255, 0.22); 
    border: 1px solid rgba(255, 255, 255, 0.30); 
    backdrop-filter: blur(8px); 
    font-size: 13px; 
    font-weight: 700; 
    margin-bottom: 20px; 
    box-shadow: 0 7px 20px rgba(65, 100, 160, 0.12); 
}
.hero-badge::before { content: "●"; font-size: 9px; color: #fff5b4; }
.hero h1 { font-size: 46px; line-height: 1.25; letter-spacing: -2px; font-weight: 900; text-shadow: 0 4px 12px rgba(67, 91, 140, 0.18); margin-bottom: 18px; }
.hero p { font-size: 17px; line-height: 1.8; color: rgba(255, 255, 255, 0.90); font-weight: 500; }

.hero-dday {
    position: absolute;
    top: 40px;
    left: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
    text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.dday-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    opacity: 0.95;
}
.dday-val {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #fff394;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.visitor-counter {
    position: absolute;
    top: 40px;
    right: 40px; 
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
    text-shadow: 0 2px 6px rgba(0,0,0,0.25); 
}
.vc-row {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.95;
}
.vc-val { 
    font-size: 16px; 
    font-weight: 900; 
    letter-spacing: 0.5px; 
    min-width: 45px; 
    text-align: right;
}
.vc-live-dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: #22c55e; border-radius: 50%;
    box-shadow: 0 0 6px #22c55e;
    animation: liveBlink 1.5s infinite;
    margin-right: 8px;
    vertical-align: middle;
}

/* 히어로 액션 버튼 (카페 버튼 길이에 딱 맞는 컴팩트 핏) */
.hero-content { padding-top: 60px; }
.hero-action-wrap {
    margin-top: 24px;
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: fit-content; /* 카페 버튼 내용 너비에 맞춰 전체 박스 축소 */
    max-width: 100%;
}

/* 1. 최상단 메인: 카페 가입 안내 버튼 (직사각형에 가까운 모던 스퀘어) */
.hero-cafe-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #1e293b;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(3, 199, 90, 0.16), 0 2px 6px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.95);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -0.2px;
    width: fit-content;
}
/* '카페' 초록색 라운드 스퀘어 뱃지 복구 */
.hero-cafe-btn .sub-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #03c75a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    padding: 3px 7px;
    border-radius: 6px;
    line-height: 1.2;
    flex-shrink: 0;
}
.hero-cafe-btn .sub-arrow {
    font-size: 13px;
    transition: transform 0.2s ease;
    color: #03c75a;
    margin-left: auto;
}
.hero-cafe-btn:hover {
    background: #ffffff;
    color: #03c75a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(3, 199, 90, 0.28);
    border-color: rgba(3, 199, 90, 0.35);
}
.hero-cafe-btn:hover .sub-arrow {
    transform: translateX(4px);
}

/* 2. 하단 서브 5:5 그리드 (단지소개 & 즐겨찾기) */
.hero-sub-row {
    display: flex;
    gap: 10px;
    width: 100%;
}
.hero-sub-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #334155;
    padding: 11px 16px;
    border-radius: 12px; /* 30px에서 12px로 곡률 대폭 축소 */
    font-size: 13.5px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(60, 90, 140, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.95);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -0.3px;
    white-space: nowrap;
    cursor: pointer;
}
.hero-sub-btn:hover {
    background: #ffffff;
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.22);
}

/* 퀵메뉴 */
.quick-wrap { position: relative; z-index: 10; max-width: 1200px; margin: -38px auto 0; padding: 0 24px; }
.quick-menu { display: grid; grid-template-columns: repeat(6, 1fr); gap: 13px; }
.quick-item { 
    min-height: 105px; 
    background: var(--bg-card-alpha); 
    border: 1px solid rgba(255, 255, 255, 0.9); 
    border-radius: 22px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    gap: 9px; 
    box-shadow: var(--shadow); 
    position: relative; 
    overflow: hidden; 
    transition: transform 0.25s ease, box-shadow 0.25s ease; 
}
.quick-item::before { 
    content: ""; 
    position: absolute; 
    width: 80px; 
    height: 80px; 
    border-radius: 50%; 
    top: -42px; 
    right: -30px; 
    background: #edf3ff; 
    transition: transform 0.3s ease; 
}
.quick-item:hover { transform: translateY(-7px) rotate(-0.5deg); box-shadow: var(--shadow-hover); }
.quick-item:hover::before { transform: scale(1.5); }
.quick-icon { 
    width: 43px; 
    height: 43px; 
    border-radius: 15px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 20px; 
    position: relative; 
    z-index: 1; 
    box-shadow: 0 6px 12px rgba(90, 110, 150, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.65); 
}
.quick-item:nth-child(1) .quick-icon { background: #dceaff; }
.quick-item:nth-child(2) .quick-icon { background: #eee5ff; }
.quick-item:nth-child(3) .quick-icon { background: #e2f7ef; }
.quick-item:nth-child(4) .quick-icon { background: #fff1c7; }
.quick-item:nth-child(5) .quick-icon { background: #ffe2eb; }
.quick-item:nth-child(6) .quick-icon { background: #e2eaff; }
.quick-title { font-size: 13px; font-weight: 800; color: #59657b; position: relative; z-index: 1; }

/* =========================================================
   메인 홈 2열 통합 대시보드 (공사현황 & 위임동의)
========================================================= */
.status-grid-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.status-col {
    display: flex;
    flex-direction: column;
}

.status-col > div[id^="main-"] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 공사현황 카드: 480px 제한 해제 및 100% 풀 와이드 */
.progress-card-wrap {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.96));
    border: 1px solid var(--border-card);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow);
    width: 100%;
    height: 100%;
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.progress-card-wrap:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.progress-card-wrap::before { content: ""; position: absolute; width: 140px; height: 140px; border-radius: 50%; background: #edf4ff; top: -45px; right: -35px; pointer-events: none; }
.progress-card-wrap::after { content: ""; position: absolute; width: 100px; height: 100px; border-radius: 50%; background: #f3f0ff; bottom: -40px; left: -30px; pointer-events: none; }

.pvc-img-box { position: relative; width: 100%; height: 210px; border-radius: var(--radius-lg); overflow: hidden; background: #e9edf5; z-index: 1; }
.pvc-img-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pvc-floating-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #5d81c0;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 5px;
}
.pvc-content-body { position: relative; z-index: 1; padding-top: 18px; display: flex; flex-direction: column; flex: 1; justify-content: space-between; }
.pvc-info-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 6px; gap: 12px; }
.pvc-title-txt { font-size: 15px; font-weight: 800; color: var(--text-title); line-height: 1.4; word-break: keep-all; }
.pvc-percent-display { display: flex; align-items: baseline; flex-shrink: 0; }
.pvc-num { font-size: 34px; font-weight: 900; color: #5d81c0; line-height: 1; letter-spacing: -1px; }
.pvc-unit { font-size: 18px; font-weight: 900; color: #82a8e8; margin-left: 2px; }
.pvc-bar-wrap { height: 14px; background: #e9edf5; border-radius: 10px; overflow: hidden; margin: 12px 0 20px; box-shadow: inset 0 2px 4px rgba(100, 110, 150, 0.06); }
.pvc-bar-fill { height: 100%; border-radius: 10px; transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.pvc-btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 20px;
    border-radius: 15px;
    background: var(--primary-gradient-btn);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 7px 15px rgba(106, 137, 196, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pvc-btn-action:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(106, 137, 196, 0.28); }

/* 위임동의 카드: 좌측 공사현황 카드와 완벽한 높이 및 비율 동기화 */
.delegation-card { 
    background: linear-gradient(135deg, #f4f0ff, #eef6ff); 
    border-radius: var(--radius-2xl); 
    padding: 26px; 
    border: 1px solid rgba(222, 219, 245, 0.65); 
    box-shadow: var(--shadow); 
    width: 100%;
    height: 100%;
    position: relative; 
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.delegation-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.delegation-card::before { content: ""; position: absolute; border-radius: 50%; pointer-events: none; width: 150px; height: 150px; background: rgba(255, 255, 255, 0.45); right: -50px; top: -75px; }
.delegation-card::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; width: 90px; height: 90px; background: rgba(255, 255, 255, 0.35); left: -35px; bottom: -40px; }

.delegation-title { font-size: 18px; font-weight: 900; color: #5a6077; margin-bottom: 20px; position: relative; z-index: 1; }
.delegation-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; position: relative; z-index: 1; margin-bottom: auto; }
.stat { background: rgba(255, 255, 255, 0.75); border-radius: 17px; padding: 22px 10px; text-align: center; box-shadow: 0 5px 12px rgba(100, 110, 150, 0.07); border: 1px solid rgba(255, 255, 255, 0.8); }
.stat-label { font-size: 12px; color: #8d97aa; font-weight: 700; margin-bottom: 6px; }
.stat-value { font-size: 22px; color: #65718a; font-weight: 900; }
.stat-highlight { color: #6c96d7; }

.delegation-bar-wrap { margin-top: 24px; position: relative; z-index: 1; }
.delegation-bar-container { height: 16px; background: #e9edf5; border-radius: 10px; overflow: hidden; margin-bottom: 20px; box-shadow: inset 0 2px 4px rgba(100, 110, 150, 0.07); }
.delegation-fill { height: 100%; border-radius: 20px; background: linear-gradient(90deg, #8dc5b0, #86bde8); position: relative; overflow: hidden; box-shadow: 0 3px 10px rgba(102, 165, 174, 0.22); }
.delegation-bar-fill { height: 100%; transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1); }

.delegation-button { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 100%; 
    padding: 13px 20px; 
    border-radius: 15px; 
    background: var(--primary-gradient-btn); 
    color: white; 
    font-size: 14px; 
    font-weight: 800; 
    box-shadow: 0 7px 15px rgba(106, 137, 196, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.35); 
    transition: transform 0.25s ease, box-shadow 0.25s ease; 
    position: relative;
    z-index: 1;
}
.delegation-button:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(106, 137, 196, 0.28); }

/* 위임동의 안내 카피 스타일 */
.delegation-header-box {
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.delegation-sub-tag {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 800;
    color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
    padding: 3px 8px;
    border-radius: 6px;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}
.delegation-lead-txt {
    font-size: 17px;
    font-weight: 900;
    color: var(--text-title);
    line-height: 1.4;
    margin-bottom: 6px;
    letter-spacing: -0.4px;
    word-break: keep-all;
}
.delegation-desc-txt {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.55;
    word-break: keep-all;
}

/* 입주 관련 정보 카드 (3색 파스텔 테마 적용) */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.info-card { min-height: 125px; border-radius: 21px; padding: 20px; box-shadow: var(--shadow); position: relative; overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease; }

/* 1. 평면도: 파스텔 스카이블루 테마 */
.info-card:nth-child(1) {
    background: linear-gradient(145deg, #ffffff 25%, #eef5ff 100%);
    border: 1px solid rgba(195, 218, 252, 0.85);}
.info-card:nth-child(1)::before { content: ""; position: absolute; width: 85px; height: 85px; border-radius: 50%; right: -32px; top: -35px; background: #dceaff; }
.info-card:nth-child(1) .info-icon { width: 39px; height: 39px; border-radius: 13px; display: flex; align-items: center; justify-content: center; background: #dceaff; margin-bottom: 12px; font-size: 18px; position: relative; z-index: 1; }

/* 2. 계산기: 파스텔 라벤더 테마 */
.info-card:nth-child(2) {
    background: linear-gradient(145deg, #ffffff 25%, #f4f0ff 100%);
    border: 1px solid rgba(223, 214, 252, 0.85);}
.info-card:nth-child(2)::before { content: ""; position: absolute; width: 85px; height: 85px; border-radius: 50%; right: -32px; top: -35px; background: #ede6ff; }
.info-card:nth-child(2) .info-icon { width: 39px; height: 39px; border-radius: 13px; display: flex; align-items: center; justify-content: center; background: #ede6ff; margin-bottom: 12px; font-size: 18px; position: relative; z-index: 1; }

/* 3. 관련 링크: 파스텔 민트 테마 */
.info-card:nth-child(3) {
    background: linear-gradient(145deg, #ffffff 25%, #ebf9f3 100%);
    border: 1px solid rgba(198, 236, 222, 0.85);}
.info-card:nth-child(3)::before { content: ""; position: absolute; width: 85px; height: 85px; border-radius: 50%; right: -32px; top: -35px; background: #d7f5ea; }
.info-card:nth-child(3) .info-icon { width: 39px; height: 39px; border-radius: 13px; display: flex; align-items: center; justify-content: center; background: #d7f5ea; margin-bottom: 12px; font-size: 18px; position: relative; z-index: 1; }

.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.info-card h3 { font-size: 14px; font-weight: 900; color: #566176; position: relative; z-index: 1; }
.info-card p { font-size: 11px; color: #9aa4b5; margin-top: 3px; position: relative; z-index: 1; }

/* 하단 배너 (광범위 파스텔 소프트 글로우 적용) */
.bottom-banner { max-width: 1200px; margin: 20px auto 40px; padding: 0 24px; }
.bottom-banner-inner { 
    border-radius: 25px; 
    padding: 29px 32px; 
    background: linear-gradient(135deg, #dceaff, #ebe5ff); 
    /* 카드의 파스텔 색감이 아래쪽으로 부드럽게 퍼져나가는 섀도우 */
    box-shadow: 0 20px 45px -10px rgba(160, 185, 235, 0.45), 0 8px 20px rgba(93, 115, 155, 0.08); 
    position: relative; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
}
.bottom-banner-inner::before { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: rgba(255, 255, 255, 0.40); right: 80px; top: -110px; }
.bottom-banner-inner::after { content: ""; position: absolute; width: 100px; height: 100px; border-radius: 50%; background: rgba(255, 255, 255, 0.25); right: -25px; bottom: -45px; }
.banner-text { position: relative; z-index: 1; }
.banner-text h2 { font-size: 19px; color: #53627e; font-weight: 900; margin-bottom: 3px; }
.banner-text p { font-size: 12px; color: #8794aa; }
.banner-button { padding: 11px 18px; border-radius: 14px; background: rgba(255, 255, 255, 0.78); color: #6b82aa; font-size: 12px; font-weight: 800; box-shadow: 0 6px 14px rgba(100, 120, 160, 0.10); position: relative; z-index: 2; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.banner-button:hover { transform: translateY(-3px); box-shadow: 0 9px 18px rgba(100, 120, 160, 0.16); }

/* PWA 안내 모달 */
.pwa-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.pwa-modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 360px;
    border-radius: var(--radius-xl);
    padding: 26px 22px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.pwa-modal-icon { font-size: 38px; margin-bottom: 10px; }
.pwa-modal-title { font-size: 18px; font-weight: 800; color: var(--text-strong); margin-bottom: 8px; }
.pwa-modal-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; word-break: keep-all; margin-bottom: 20px; }

/* 아이폰 스텝별 가이드 리스트 스타일 */
.pwa-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 18px 0 24px;
    text-align: left;
}
.pwa-step-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-sub);
    background: #f8fafc;
    padding: 9px 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}
.pwa-step-item strong {
    color: #1e293b;
}
.pwa-step-num {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #eef4ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
    font-size: 11.5px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.btn-pwa-close {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #6f9fe8 0%, #8b80e8 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(111, 159, 232, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-pwa-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(111, 159, 232, 0.38);
}


/* ---------------------------------------------------------
   9-2. 주요 일정 & 타임라인 (Timeline, Schedule Detail)
--------------------------------------------------------- */
.schedule-container { max-width: 800px; margin: 0 auto 80px; padding: 0 24px; }
.full-timeline { position: relative; padding-left: 38px; margin-top: 40px; }

.timeline { 
    position: relative; 
    padding-left: 36px; 
    margin-top: 25px; 
    margin-bottom: 25px; 
}
.timeline::before { 
    content: '' !important; 
    position: absolute !important; 
    top: 28px !important; 
    bottom: 28px !important; 
    left: 8px !important; 
    width: 2px !important; 
    background: #cbd5e1 !important; 
    border-radius: 2px !important;
    box-shadow: none !important;
}

.timeline-bar {
    position: absolute;
    left: 8px;
    width: 3px;
    background: linear-gradient(180deg, #7ea9e7 0%, #b9a9ee 50%, #91d9c4 100%);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(111, 159, 232, 0.3);
    z-index: 1;
    display: none;
}

.tl-item { 
    position: relative; 
    margin-bottom: 20px; 
    display: block; 
    text-decoration: none; 
    color: inherit; 
    /* 맑고 투명감 있는 소프트 파스텔 틴트 */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, #f1f6fe 100%);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    border: 1px solid rgba(195, 218, 252, 0.75);
    /* 은은한 파스텔 블루 톤의 부드러운 그림자 */
    box-shadow: 0 4px 16px rgba(111, 159, 232, 0.08), 0 1px 3px rgba(93, 115, 155, 0.04);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.tl-item:last-child { margin-bottom: 0; }
.tl-item:hover { 
    transform: translateY(-3px) translateX(3px); 
    border-color: var(--border-card-hover);
    box-shadow: 0 12px 26px rgba(93, 115, 155, 0.14), 0 4px 10px rgba(59, 130, 246, 0.08);
}
.tl-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 27px;
    width: 28px;
    height: 2px;
    background: #cbd5e1;
    border-radius: 1px;
    transition: all 0.25s ease;
    z-index: 1;
}
.tl-item:hover::before { background: var(--text-caption); }
.tl-item.past::before { background: #cbd5e1; }
.tl-item.past:hover::before { background: var(--text-caption); }

.tl-dot { 
    position: absolute; 
    left: -35px; 
    top: 20px; 
    width: 16px; 
    height: 16px; 
    border-radius: 50%; 
    background: #ffffff; 
    border: 3px solid var(--text-caption);
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.2); 
    z-index: 2; 
    transition: all 0.25s ease;
}
.tl-item.past .tl-dot { display: none; }
.tl-item:hover .tl-dot {
    transform: scale(1.2);
    border-color: var(--text-muted);
    box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.25);
}

.full-timeline .tl-item { margin-bottom: 22px; padding: 22px 24px; }
.full-timeline .tl-item::before { left: -29px; top: 30px; width: 29px; }
.full-timeline .tl-item:hover::before { background: #2563eb; box-shadow: 0 0 6px rgba(37, 99, 235, 0.4); }
.full-timeline .tl-dot {
    left: -37px; 
    top: 23px;
    border: 3px solid #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22), 0 2px 6px rgba(0, 0, 0, 0.08);
}
.full-timeline .tl-item:hover .tl-dot {
    transform: scale(1.22);
    border-color: #059669;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25), 0 0 12px rgba(16, 185, 129, 0.5);
}

.tl-date { 
    font-size: 13.5px; 
    font-weight: 700; 
    color: var(--text-muted); 
    margin-bottom: 8px; 
    letter-spacing: 0.3px; 
    display: flex; 
    align-items: center; 
}
.tl-title { 
    font-size: 17px; 
    font-weight: 800; 
    color: var(--text-strong); 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    transition: color 0.2s; 
    flex-wrap: wrap; 
    line-height: 1.4;
}
.tl-item:hover .tl-title { color: #2563eb; } 
.tl-subtitle { 
    font-size: 13.5px; 
    color: var(--text-muted); 
    margin-top: 8px; 
    line-height: 1.55; 
}

.status-badge { 
    font-size: 12px; 
    padding: 3px 9px; 
    border-radius: var(--radius-xs); 
    font-weight: 800; 
    display: inline-flex;
    align-items: center;
}
.status-badge.done { background: #eef4ff; color: #4f79c2; border: 1px solid #dbeafe; }
.status-badge.ing { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.status-badge.wait { background: var(--bg-sub); color: var(--text-muted); border: 1px solid var(--border-light); }

.tl-today { 
    position: relative; 
    display: flex; 
    align-items: center; 
    margin: 24px 0; 
    left: -35px; 
    z-index: 3; 
}
.full-timeline .tl-today { margin: 32px 0; left: -37px; }
.today-dot { 
    position: relative;
    width: 16px; 
    height: 16px; 
    background: #2563eb; 
    border-radius: 50%; 
    border: 2px solid #ffffff;
    flex-shrink: 0; 
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25);
    z-index: 2;
}

/* 동심원으로 퍼져나가는 2중 레이더 파동 효과 */
.today-dot::before,
.today-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.5);
    transform: translate(-50%, -50%);
    animation: radarWave 2s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
    pointer-events: none;
    z-index: -1;
}

.today-dot::after {
    animation-delay: 0.85s; /* 시차를 두고 두 번째 파동 발사 */
}
.today-line { 
    width: 28px; 
    height: 2px; 
    background: #3b82f6; 
    margin-left: 0; 
}
.full-timeline .today-line { width: 32px; background: linear-gradient(90deg, #3b82f6, rgba(59, 130, 246, 0.2)); }
.today-text { 
    margin-left: 10px; 
    font-size: 14px; 
    font-weight: 800; 
    color: #2563eb; 
    background: #eff6ff;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid #bfdbfe;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.08);
    letter-spacing: 0.3px; 
}
.tl-dot.today-pulse { 
    background: linear-gradient(135deg, #2563eb, #60a5fa); 
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); 
    animation: pulse 1.5s infinite; 
    border: 2px solid #ffffff;
    display: block !important;
}
.inline-today-text { 
    display: inline-flex; 
    align-items: center; 
    color: #2563eb; 
    font-weight: 800; 
    margin-left: 10px; 
    font-size: 13px; 
    background: #eff6ff;
    padding: 2px 8px;
    border-radius: var(--radius-md);
    border: 1px solid #bfdbfe;
}
.inline-today-line { width: 12px; height: 2px; background: #3b82f6; margin-right: 6px; }

/* 일정 상세 */
.detail-meta { font-size: 15px; color: #53627e; background: var(--bg-main); padding: 15px 20px; border-radius: var(--radius-md); margin-bottom: 20px; }
.detail-meta div { margin-bottom: 8px; }
.detail-meta div:last-child { margin-bottom: 0; }
.detail-meta strong { color: var(--text-body); display: inline-block; width: 60px; }


/* ---------------------------------------------------------
   9-3. 공사현황 & 대시보드 & 슬라이드쇼 (Progress)
--------------------------------------------------------- */
.progress-page-container { 
    max-width: 1000px; 
    margin: 0 auto 60px; 
    padding: 0 24px; 
}

.integrated-progress-card { 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.96)); 
    border-radius: var(--radius-2xl); 
    padding: 30px; 
    border: 1px solid rgba(222, 228, 241, 0.75); 
    box-shadow: var(--shadow); 
    margin-bottom: 35px; 
    position: relative;
    overflow: hidden;
}
.integrated-progress-card::before { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: #edf4ff; top: -60px; right: -40px; pointer-events: none; opacity: 0.7; }
.ipc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; gap: 12px; position: relative; z-index: 1; }
.ipc-title-wrap h2 { font-size: 21px; font-weight: 900; color: var(--text-title); letter-spacing: -0.5px; display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.ipc-title-wrap h2::before { content: ''; display: inline-block; width: 7px; height: 22px; background: linear-gradient(180deg, #82b2ee, #b4a5e9); border-radius: 10px; box-shadow: 0 3px 8px rgba(120, 145, 200, 0.22); }
.ipc-date-info { font-size: 13px; color: var(--text-light); font-weight: 600; padding-left: 17px; }
.ipc-diff-badge { display: inline-flex; align-items: center; gap: 4px; padding: 6px 14px; border-radius: 20px; font-size: 12.5px; font-weight: 800; background: #e6f7f0; color: var(--mint-dark); border: 1px solid #bfead9; white-space: nowrap; box-shadow: 0 2px 6px rgba(12, 166, 120, 0.08); }
.ipc-diff-badge.down { background: #fff0f0; color: var(--red); border-color: #fcc2c2; }
.ipc-rate-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; position: relative; z-index: 1; }
.ipc-rate-label { font-size: 14px; font-weight: 800; color: var(--text-muted); }
.ipc-rate-val { font-size: 38px; font-weight: 900; color: #5d81c0; letter-spacing: -1px; line-height: 1; }
.ipc-bar { height: 16px; background: #e9edf5; border-radius: var(--radius-md); overflow: hidden; box-shadow: inset 0 2px 4px rgba(100, 110, 150, 0.08); margin-bottom: 10px; position: relative; z-index: 1; }
.ipc-bar-fill { height: 100%; border-radius: var(--radius-md); background: linear-gradient(90deg, #82afea, #91b9ee, #a9abe8); box-shadow: 0 3px 10px rgba(112, 154, 220, 0.30); transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1); position: relative; }
.ipc-milestones { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: #8d97aa; padding: 0 4px; margin-bottom: 26px; position: relative; z-index: 1; }
.ms-active { color: #5d81c0; font-weight: 800; }
.ipc-divider { height: 1px; background: linear-gradient(90deg, transparent, #e2e8f0, transparent); margin-bottom: 22px; position: relative; z-index: 1; }
.ipc-chart-title { font-size: 14.5px; font-weight: 800; color: #59657b; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; position: relative; z-index: 1; }

.play-slideshow-btn { display: inline-flex; align-items: center; gap: 7px; padding: 10px 20px; border-radius: 30px; background: linear-gradient(135deg, #8eb7f3, #a99bea); color: #ffffff; font-size: 13.5px; font-weight: 800; border: 1px solid rgba(255, 255, 255, 0.4); cursor: pointer; box-shadow: 0 6px 14px rgba(111, 159, 232, 0.25), inset 0 1px 1px rgba(255,255,255,0.45); transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); white-space: nowrap; flex-shrink: 0; }
.play-slideshow-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(111, 159, 232, 0.35); filter: brightness(1.03); }
.play-slideshow-btn.playing { background: linear-gradient(135deg, #ff7b7b, #f5222d) !important; box-shadow: 0 6px 14px rgba(245, 34, 45, 0.28), inset 0 1px 1px rgba(255,255,255,0.45) !important; }

.site-photo-section { margin-bottom: 40px; }
.site-photo-card { background: var(--bg-card-alpha); border-radius: var(--radius-2xl); padding: 18px; border: 1px solid rgba(222, 228, 241, 0.7); box-shadow: var(--shadow); }
.site-photo-box { width: 100%; aspect-ratio: 3 / 4; max-height: 700px; background: var(--text-strong); border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-light); position: relative; overflow: hidden; margin: 0 auto; box-shadow: inset 0 2px 6px rgba(0,0,0,0.25); }

.summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 30px; }
.summary-card { background: var(--bg-card-alpha); border-radius: var(--radius-xl); padding: 22px; border: 1px solid rgba(222, 228, 241, 0.7); box-shadow: var(--shadow); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.summary-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.summary-card-title { font-size: 13px; font-weight: 800; color: #8d97aa; margin-bottom: 8px; }
.summary-card-value { font-size: 30px; font-weight: 900; color: #505c70; margin-bottom: 4px; letter-spacing: -0.5px; }
.summary-card-value.blue { color: #5d81c0; }
.summary-card-value.green { color: var(--mint-dark); }
.summary-card-desc { font-size: 12px; color: var(--text-caption); font-weight: 500; }

.table-container { background: var(--bg-card-alpha); border-radius: var(--radius-2xl); padding: 28px; border: 1px solid rgba(222, 228, 241, 0.7); box-shadow: var(--shadow); margin-bottom: 30px; }

.progress-desktop-table { width: 100%; overflow-x: auto; }
.progress-table { width: 100%; border-collapse: collapse; text-align: center; font-size: 14px; }
.progress-table th { background: var(--bg-sub); padding: 15px 12px; font-weight: 800; color: #505c70; border-bottom: 2px solid var(--border-light); white-space: nowrap; }
.progress-table td { padding: 16px 12px; color: #334155; border-bottom: 1px solid var(--border-subtle); vertical-align: middle; }
.progress-table tr:last-child td { border-bottom: none; }
.col-nowrap { white-space: nowrap; }
.diff-up { color: var(--mint-dark); font-weight: 900; }
.diff-down { color: var(--red); font-weight: 900; }

.progress-mobile-list { display: none; flex-direction: column; gap: 12px; }
.p-mob-card { background: var(--bg-sub); border: 1px solid #eef1f6; border-radius: var(--radius-lg); padding: 18px; }
.p-mob-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; border-bottom: 1px dashed var(--border-light); margin-bottom: 10px; }
.p-mob-date { font-size: 15px; font-weight: 800; color: var(--text-title); white-space: nowrap; }
.p-mob-rates { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.p-mob-rate { font-size: 16px; font-weight: 900; color: #5d81c0; }
.p-mob-diff { font-size: 13px; font-weight: 800; }
.p-mob-body { display: flex; flex-direction: column; gap: 6px; }
.p-mob-title { font-size: 14.5px; font-weight: 800; color: var(--text-sub); word-break: keep-all; line-height: 1.4; }
.p-mob-desc { font-size: 13px; color: var(--text-light); line-height: 1.55; word-break: keep-all; }

/* =========================================================
   주요 공정 소식: 그림자 잘림 방지 가로 스와이프 레이아웃
========================================================= */
.progress-grid { 
    display: flex !important; 
    gap: 18px; 
    overflow-x: auto; 
    /* 상단(-5px 호버), 좌/우, 하단 그림자가 잘리지 않도록 넉넉한 내부 완충 여백 부여 */
    padding: 18px 24px 34px 16px !important; 
    margin-left: -16px;
    margin-right: -16px;
    scrollbar-width: none; 
    -webkit-overflow-scrolling: touch;
}
.progress-grid::-webkit-scrollbar { display: none; }

/* 수평 스크롤 전용 공정 소식 카드 */
.progress-list-card { 
    flex: 0 0 320px; 
    min-height: 280px;
    background: var(--bg-card-alpha); 
    border-radius: 22px; 
    padding: 22px; 
    border: 1px solid rgba(222, 228, 241, 0.7); 
    box-shadow: var(--shadow); 
    transition: transform 0.25s ease, box-shadow 0.25s ease; 
    display: flex; 
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none; 
    will-change: transform, box-shadow;
}

.progress-list-card:hover { 
    transform: translateY(-5px); 
    box-shadow: var(--shadow-hover); 
}

.plc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; }
.plc-title { font-size: 17px; font-weight: 800; color: var(--text-title); word-break: keep-all; }
.plc-desc { font-size: 13.5px; color: var(--text-light); margin-bottom: 20px; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; word-break: keep-all; }
.mini-progress-info { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: #5d81c0; margin-top: 8px; }
.plc-date { font-size: 12px; color: #8794aa; }

.chart-container-wrap { position: relative; height: 260px; width: 100%; }
.progress-card-thumb { width: 100%; height: 160px; border-radius: 14px; overflow: hidden; margin-bottom: 15px; background: #f1f5f9; }
.progress-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.progress-period-text { margin-top: 15px; text-align: right; font-size: 12px; color: #8794aa; }
.col-date { font-weight: 700; }
.col-rate { font-weight: 900; color: #5d81c0; font-size: 15px; }
.col-desc { text-align: left; min-width: 240px; }
.p-table-title { font-weight: 800; color: var(--text-title); margin-bottom: 4px; word-break: keep-all; }
.p-table-desc { font-size: 13px; color: var(--text-light); line-height: 1.55; word-break: keep-all; }
.diff-neutral { color: var(--text-caption); }
.mini-bar-wrap { position: relative; background: #e9edf5; display: flex; height: 12px; border-radius: 10px; overflow: hidden; }
.anim-bar-base { width: 0%; height: 100%; transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.sub-rate-txt { font-size: 11px; color: #8794aa; font-weight: normal; }
.img-fallback-center { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--text-caption); font-size: 14px; }
.img-hidden { opacity: 0; }

.slide-placeholder {
    color: var(--text-caption);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: absolute;
    width: 100%;
    padding: 0 20px;
    z-index: 5;
}
.slide-placeholder-icon { font-size: 32px; }
.slide-placeholder-msg { font-size: 14px; word-break: keep-all; text-align: center; }
.slide-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
}
.slide-layer-1 { z-index: 1; }
.slide-layer-2 { z-index: 2; }


/* ---------------------------------------------------------
   9-4. 자주 묻는 질문 (FAQ Accordion)
--------------------------------------------------------- */
.faq-page-container { 
    max-width: 800px; 
    margin: 0 auto 80px; 
    padding: 0 24px; 
}

.faq-list { 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
}

.faq-item {
    position: relative !important;
    /* 은은한 소프트 파스텔 틴트 */
    background: linear-gradient(145deg, #ffffff 40%, #f3f7fd 100%);
    border: 1px solid rgba(208, 224, 247, 0.8);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    border-color: #b9d3f8;
    box-shadow: 0 8px 24px rgba(93, 115, 155, 0.12);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #8eb7f3;
    box-shadow: 0 8px 24px rgba(111, 159, 232, 0.15);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding: 22px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-question-inner { 
    position: relative;
    padding-left: 38px;
    display: block;
    flex: 1; 
    min-width: 0; 
    font-size: 16px;
    font-weight: 800;
    color: var(--text-title);
    line-height: 1.55;
    word-break: keep-all;
    overflow-wrap: break-word;
    transition: color 0.2s ease;
}

.faq-item:hover .faq-question-inner,
.faq-item.active .faq-question-inner {
    color: #5d81c0;
}

.faq-q-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 26px; 
    height: 26px; 
    border-radius: var(--radius-sm);
    display: flex; 
    align-items: center; 
    justify-content: center;
    background: #e9f0ff; 
    color: #6b8fc9; 
    border: 1px solid #c9ddfc;
    font-size: 13px; 
    font-weight: 900;
    box-shadow: 0 2px 5px rgba(107, 143, 201, 0.12);
    transition: all 0.25s ease;
}

.faq-item.active .faq-q-badge {
    background: linear-gradient(135deg, #7ea9e7, #91b9ee);
    color: #ffffff;
    border-color: #7ea9e7;
    box-shadow: 0 4px 10px rgba(111, 159, 232, 0.3);
}

/* 화살표 버튼 (빨간 점 공간 확보를 위해 왼쪽으로 이동) */
.faq-arrow { 
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light); 
    font-size: 11px; 
    margin-top: 1px;
    margin-right: 14px; /* 화살표를 왼쪽으로 살짝 이동 */
    transition: all 0.28s ease;
}

/* FAQ 카드 전용 빨간 점: 화살표 우측 정중앙에 고정 */
.faq-item .card-new-dot {
    top: 31px;
    right: 18px;
}

.faq-item:hover .faq-arrow {
    background: var(--border-light);
    color: var(--text-title);
}

.faq-item.active .faq-arrow { 
    transform: rotate(180deg); 
    background: #e9f0ff;
    color: #5d81c0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    background: var(--bg-sub);
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer { 
    max-height: 800px; 
    border-top-color: var(--border-light);
}

.faq-answer-inner {
    position: relative;
    padding: 20px 24px 24px 62px;
    color: var(--text-sub);
    font-size: 14.5px;
    line-height: 1.7;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.faq-answer-inner::before {
    content: 'A';
    position: absolute;
    left: 24px;
    top: 20px;
    width: 26px; 
    height: 26px; 
    border-radius: var(--radius-sm);
    background: #e5f7f0;
    color: #5eaa91;
    border: 1px solid #bfead9;
    font-size: 13px; 
    font-weight: 900;
    display: flex; 
    align-items: center; 
    justify-content: center;
    box-shadow: 0 2px 5px rgba(94, 170, 145, 0.12);
}


/* ---------------------------------------------------------
   9-5. 가입신청서 및 위임동의서 (Agreement & Canvas Modal)
--------------------------------------------------------- */
.agreement-container { max-width: 800px; margin: 0 auto 80px; padding: 0 24px; }

/* 가이드 안내 박스와 동일한 소프트 로즈 파스텔 틴트 규격으로 통일 */
.pre-contract-warning {
    background: #fff8f8;
    border: 1px solid #fecaca;
    border-radius: var(--radius-lg);
    padding: 36px 20px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(224, 49, 49, 0.04);
}
.pcw-title {
    color: var(--red);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.45;
    margin-bottom: 12px;
    word-break: keep-all;
}
.pcw-desc {
    color: var(--text-sub);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    word-break: keep-all;
}

.term-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: left;
}
.term-table th, .term-table td {
    border: 1px solid #cbd5e1;
    padding: 12px 15px;
    line-height: 1.6;
}
.term-table th { background: var(--bg-sub); color: var(--text-sub); font-weight: 800; white-space: nowrap; width: 120px; }
.term-table td { color: #334155; }

.term-text { font-size: 14px; color: var(--text-sub); line-height: 1.7; margin-bottom: 20px; }
.term-text h4 { color: #334155; font-size: 15px; margin: 15px 0 8px; font-weight: 800; }

.agree-check-box {
    background: #f4f7fc;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    color: #334155;
    margin-bottom: 30px;
}
.agree-check-box input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; }
.agree-label { cursor: pointer; display: flex; align-items: center; gap: 10px; }

.form-section-title { font-size: 20px; font-weight: 900; color: #334155; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.form-section-title::before { content: ''; display: block; width: 4px; height: 18px; background: var(--primary); border-radius: 2px; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 800; color: var(--text-sub); margin-bottom: 8px; }
.form-label .req { color: var(--red); } 

.form-control {
    width: 100%; 
    padding: 12px 15px; 
    font-size: 15px;
    border: 1px solid #cbd5e1; 
    border-radius: var(--radius-sm);
    background: var(--bg-input); 
    color: #334155; 
    transition: border 0.2s;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(111,159,232,0.15); }

.form-row { display: flex; gap: 15px; }
.form-row .form-group { flex: 1; }

.btn-signature { background: var(--primary); color: #fff; border: none; padding: 10px 15px; border-radius: var(--radius-sm); font-weight: 800; cursor: pointer; white-space: nowrap; transition: background 0.2s; box-shadow: 0 3px 8px rgba(111, 159, 232, 0.25); }
.btn-signature:hover { background: var(--primary-dark); }
.btn-signature:disabled { background: var(--mint-dark); box-shadow: none; cursor: default; }

.btn-modify { background: var(--text-muted); color: #fff; border: none; padding: 10px 12px; border-radius: var(--radius-sm); font-weight: 800; cursor: pointer; white-space: nowrap; display: none; }
.btn-modify:hover { background: var(--text-sub); }

.btn-search { background: #334155; color: #fff; border: none; padding: 10px 15px; border-radius: var(--radius-sm); font-weight: 800; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.btn-search:hover { background: var(--text-strong); }
.input-with-btn { display: flex; gap: 8px; align-items: center; }

.file-upload-box { 
    display: block; 
    border: 2px dashed rgba(111, 159, 232, 0.4); 
    padding: 35px 20px; 
    text-align: center; 
    border-radius: var(--radius-lg); 
    background: rgba(220, 234, 255, 0.25); 
    color: var(--text-light); 
    margin-top: 10px; 
    cursor: pointer; 
    transition: all 0.25s ease;
}
.file-upload-box:hover { 
    border-color: var(--primary); 
    background: rgba(220, 234, 255, 0.5); 
    transform: translateY(-2px);
}
.file-icon-wrap {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
    margin-bottom: 15px;
    color: var(--primary);
}

.submit-section { text-align: center; margin-top: 40px; }
.submit-date { font-size: 16px; font-weight: 800; color: var(--text-sub); margin-bottom: 20px; }
.help-text { font-size: 12px; color: var(--text-caption); margin-top: 6px; }

/* 폼 전용 모달 레이어 */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(100, 116, 139, 0.85); 
    display: none; 
    align-items: center; justify-content: center;
    z-index: 1000;
}
.modal-content {
    background: #fff; width: 90%; max-width: 480px;
    max-height: 90vh; overflow: hidden;
    border-radius: var(--radius-lg); padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
#postcode-layer-modal .modal-content { width: min(92vw, 500px); max-height: 90vh; padding: 20px; }
#daum-postcode-wrap { width: 100%; height: 450px; min-height: 300px; overflow: hidden; }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.modal-header h3 { font-size: 18px; font-weight: 800; color: #334155; margin: 0; }
.btn-close { background: none; border: none; font-size: 28px; color: var(--text-caption); cursor: pointer; padding: 0; line-height: 1; }

.canvas-container { border: 2px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 15px; background: var(--bg-sub); }
#signature-pad { width: 100%; height: 220px; display: block; touch-action: none; cursor: crosshair; }
.modal-footer { display: flex; gap: 10px; }
.btn-clear {
    flex: 1; background: var(--border-light); color: var(--text-sub); border: none;
    padding: 14px; border-radius: 10px; font-weight: 800; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-clear:hover { background: #cbd5e1; }
.btn-done {
    flex: 1; background: var(--primary); color: #fff; border: none;
    padding: 14px; border-radius: 10px; font-weight: 800; cursor: pointer;
    box-shadow: 0 3px 8px rgba(111, 159, 232, 0.25);
}
.btn-done:hover { background: var(--primary-dark); }


/* ---------------------------------------------------------
   9-6. 각종 계산기 (Calculator & Result Sheet)
--------------------------------------------------------- */
.calc-wrapper { 
    max-width: 1000px; 
    margin: 0 auto 80px; 
    padding: 0 24px; 
    display: grid; 
    gap: 30px; 
    grid-template-columns: 1fr 1fr; 
}
.calc-card { 
    background: var(--bg-card-alpha); 
    border-radius: var(--radius-xl); 
    padding: 30px; 
    border: 1px solid var(--border-card); 
    box-shadow: var(--shadow); 
}
.calc-card.result-card { 
    background: var(--bg-sub); 
    border: 2px solid var(--border-light); 
    position: sticky; 
    top: 20px; 
    height: fit-content; 
}

.calc-section-title { 
    font-size: 18px; 
    font-weight: 800; 
    color: var(--text-title); 
    margin-bottom: 20px; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    border-bottom: 2px solid #eef2f6; 
    padding-bottom: 10px; 
    word-break: keep-all; 
}
.calc-section-mt { margin-top: 35px; }

.calc-grid-2 { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 12px; 
}

.calc-label { 
    display: block; 
    font-size: 13px; 
    font-weight: 700; 
    color: #53627e; 
    margin-bottom: 6px; 
    word-break: keep-all; 
}

.option-item { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 10px 0; 
    border-bottom: 1px dashed var(--border-light); 
    font-size: 14px; 
    gap: 10px; 
}
.option-item:last-child { border-bottom: none; }
.option-label { color: var(--text-sub); font-weight: 600; word-break: keep-all; }
.option-price { color: var(--text-muted); font-size: 13px; white-space: nowrap; flex-shrink: 0; }

.opt-balcony-box { background: var(--bg-sub); padding: 12px; border-radius: var(--radius-sm); border: 1px solid var(--border-light); margin-bottom: 15px; }
.opt-balcony-label, .opt-balcony-price, .val-highlight-blue { color: #6c96d7; font-weight: 700; }
.opt-balcony-price, .val-highlight-bold { font-weight: 800; }
.opt-check-label { cursor: pointer; display: flex; align-items: center; gap: 8px; }
.schedule-box { margin: 15px 0; background: #ffffff; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border-light); }
.result-row-last { border-bottom: none !important; padding-bottom: 0 !important; }
.val-highlight-amber { color: var(--yellow-dark); font-weight: 800; }
.desc-highlight-amber { color: #b45309; }
.val-highlight-red { color: var(--red); font-weight: 800; }

.result-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 12px 0; 
    border-bottom: 1px solid var(--border-light); 
    gap: 12px; 
}
.result-row.total { 
    border-bottom: 2px solid #cbd5e1; 
    font-weight: 800; 
    color: var(--text-strong); 
}
.result-label-group { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.result-label { font-size: 14px; font-weight: 700; color: var(--text-muted); word-break: keep-all; }
.result-sub-desc { font-size: 11.5px; color: var(--text-caption); font-weight: normal; word-break: keep-all; line-height: 1.3; }
.result-val { font-size: 16px; font-weight: 800; color: #334155; text-align: right; white-space: nowrap; flex-shrink: 0; }

.highlight-box { 
    background: #eef4ff; 
    padding: 20px; 
    border-radius: var(--radius-md); 
    border: 1px solid var(--primary-light); 
    margin-top: 20px; 
    text-align: center; 
}
.highlight-box-title { font-size: 14px; font-weight: 800; color: #6c96d7; }
.highlight-box-val { font-size: 28px; font-weight: 900; color: var(--text-strong); margin-top: 5px; white-space: nowrap; }
.highlight-box-desc { font-size: 12px; color: var(--text-caption); margin-top: 8px; word-break: keep-all; line-height: 1.4; }

.btn-calc-copy {
    width: 100%;
    margin-top: 18px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.28);
    transition: all 0.25s ease;
    letter-spacing: -0.3px;
    -webkit-appearance: none;
    outline: none;
}
.btn-calc-copy:hover {
    background: linear-gradient(135deg, #4338ca 0%, #4f46e5 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
}
.btn-calc-copy:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(79, 70, 229, 0.25);
}
.btn-calc-copy.copied {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.28);
}


/* ---------------------------------------------------------
   9-7. 세대 평면도 & 의견공유 (Floorplan & Comments)
--------------------------------------------------------- */
.floorplan-container { 
    max-width: 900px; 
    margin: 0 auto 80px; 
    padding: 0 24px; 
}

.tab-menu { 
    display: flex; 
    gap: 10px; 
    justify-content: center; 
    margin-bottom: 30px; 
    flex-wrap: wrap; 
}
.tab-btn {
    padding: 12px 24px; 
    border-radius: 14px; 
    border: 1px solid rgba(222, 228, 241, 0.8);
    background: #fff; 
    color: #53627e; 
    font-weight: 800; 
    font-size: 16px; 
    cursor: pointer;
    transition: all 0.2s ease; 
    box-shadow: var(--shadow);
}
.tab-btn:hover { background: #f0f4f8; }
.tab-btn.active { background: #6c96d7; color: white; border-color: #6c96d7; }

.plan-card {
    background: var(--bg-card-alpha);
    border-radius: var(--radius-xl); 
    padding: 30px;
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow); 
    margin-bottom: 40px; 
    text-align: center;
}
.plan-image-box {
    width: 100%; 
    max-height: 500px; 
    background: var(--bg-sub); 
    border-radius: 14px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    overflow: hidden; 
    border: 1px solid var(--border-light); 
    margin-bottom: 20px;
}
.plan-image-box img { 
    width: 100%; 
    height: auto; 
    object-fit: contain; 
    max-height: 480px; 
}
.plan-title { 
    font-size: 22px; 
    font-weight: 900; 
    color: var(--text-title); 
    margin-bottom: 8px; 
    text-align: left; 
}
.plan-desc { 
    font-size: 14px; 
    color: var(--text-light); 
    text-align: left; 
    margin-bottom: 25px; 
}
/* 로딩 및 준비중/에러 안내 전용 엠프티 스테이트 */
.plan-loading-txt,
.plan-status-msg { 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-light); 
    padding: 40px 20px;
    min-height: 200px;
}
.plan-status-msg::before {
    content: '📐';
    font-size: 32px;
}
.plan-status-msg.error {
    color: var(--red);
}
.plan-status-msg.error::before {
    content: '⚠️';
}

/* 댓글 섹션 스타일 */

.comment-section { 
    margin-top: 30px; 
    text-align: left; 
    border-top: 2px solid #eef2f6; 
    padding-top: 25px; 
}
.comment-title { 
    font-size: 18px; 
    font-weight: 800; 
    color: var(--text-title); 
    margin-bottom: 15px; 
}

.comment-form { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    margin-bottom: 25px; 
}
.comment-row { 
    display: flex; 
    gap: 10px; 
}
.comment-input, 
.comment-textarea {
    width: 100%; 
    padding: 12px 16px; 
    border-radius: var(--radius-md);
    border: 1px solid #cbd5e1; 
    font-size: 14px; 
    outline: none; 
    background: #fff;
}
.comment-author-input { 
    max-width: 200px; 
}
.comment-input:focus, 
.comment-textarea:focus { 
    border-color: #6c96d7; 
    box-shadow: 0 0 0 3px rgba(108, 150, 215, 0.15); 
}
.comment-textarea { 
    resize: vertical; 
    min-height: 80px; 
}
.comment-submit-btn {
    align-self: flex-end; 
    padding: 10px 24px; 
    background: #6c96d7; 
    color: white;
    font-weight: 700; 
    border: none; 
    border-radius: 10px; 
    cursor: pointer; 
    transition: background 0.2s;
}
.comment-submit-btn:hover { background: #5882c3; }

.comment-list { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
}
.comment-item { 
    background: var(--bg-sub); 
    padding: 16px 20px; 
    border-radius: var(--radius-md); 
    border: 1px solid var(--border-light); 
}
.comment-header { 
    display: flex; 
    justify-content: space-between; 
    font-size: 13px; 
    margin-bottom: 6px; 
}
.comment-author { 
    font-weight: 800; 
    color: var(--text-title); 
}
.comment-date { color: var(--text-caption); }
.comment-body { 
    font-size: 14px; 
    color: #334155; 
    line-height: 1.5; 
    word-break: break-word; 
}


/* ---------------------------------------------------------
   9-8. 공통 상세 뷰어 (Detail Pages & Documents)
--------------------------------------------------------- */
.detail-container { 
    max-width: 800px; 
    margin: 40px auto 80px; 
    padding: 0 24px; 
}

.detail-head-box { margin-bottom: 25px; border-bottom: 2px solid var(--border-light); padding-bottom: 20px; }
.detail-header { border-bottom: 2px solid #eef1f6; padding-bottom: 20px; margin-bottom: 30px; }
.detail-action-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.detail-title-lg { font-size: 26px; font-weight: 900; color: #334155; line-height: 1.4; word-break: keep-all; margin: 10px 0 12px 0; }
.detail-title { font-size: 28px; font-weight: 900; color: var(--text-body); margin-bottom: 15px; line-height: 1.4; }
.detail-date-txt { color: var(--text-caption); font-size: 13px; font-weight: 700; }
.detail-sub-banner { font-weight: 700; color: var(--text-muted); margin-bottom: 25px; padding: 15px 18px; background: var(--bg-sub); border-radius: var(--radius-md); border: 1px solid var(--border-light); line-height: 1.6; }
.detail-meta-wrap { display: flex; justify-content: space-between; align-items: center; }
.detail-date { font-size: 14px; color: #8794aa; }
.big-percent-badge { display: inline-block; background: #eef4ff; color: #6c96d7; font-size: 18px; font-weight: 900; padding: 8px 16px; border-radius: var(--radius-md); }

.detail-download-box { margin-top: 50px; padding: 30px 20px; background: var(--bg-sub); border-radius: var(--radius-lg); border: 1px solid var(--border-light); text-align: center; }
.detail-download-icon { font-size: 24px; margin-bottom: 10px; }
.detail-download-text { margin-bottom: 15px; font-size: 15px; font-weight: 700; color: var(--text-sub); }
.detail-download-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #6c96d7;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 0 6px 12px rgba(108, 150, 215, 0.25);
    transition: transform 0.2s ease, background 0.2s ease;
}
.detail-download-btn:hover { background: #5a8adb; transform: translateY(-2px); }

/* 노션 연동 본문 */
.notion-body-content,
.detail-content { 
    font-size: 16px; 
    color: #4e617f; 
    line-height: 1.8; 
    white-space: pre-wrap !important; 
    word-break: break-word; 
}
.notion-body-content img,
.detail-content img { 
    max-width: 100%; 
    border-radius: 15px; 
    margin: 20px 0; 
    box-shadow: var(--shadow); 
}
.notion-body-content p,
.detail-content p { 
    margin: 0 0 15px 0 !important; 
    min-height: 1.5em; 
}
.notion-body-content ul, 
.notion-body-content ol,
.detail-content ul, 
.detail-content ol { 
    margin-bottom: 15px; 
    padding-left: 20px; 
}
.notion-body-content h2, 
.notion-body-content h3,
.detail-content h3 { 
    margin: 30px 0 15px; 
    color: var(--text-body); 
}
.notion-body-content p:empty::before, 
.notion-body-content div:empty::before { 
    content: '\00a0'; 
}

/* 자료실 목록 */
.doc-container { 
    max-width: 900px; 
    margin: 0 auto 60px; 
    padding: 0 24px; 
}
.doc-list { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
}
.doc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card-alpha);
    border: 1px solid var(--border-card);
    padding: 20px 25px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(93, 115, 155, 0.05);
    transition: all 0.2s ease;
    position: relative !important;
}
.doc-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(93, 115, 155, 0.1);
    border-color: var(--primary-light);
}
.doc-info { display: flex; flex-direction: column; gap: 6px; }
.doc-badge { display: inline-block; font-size: 11px; font-weight: 800; color: #6b8fc9; background: #e9f0ff; padding: 3px 8px; border-radius: var(--radius-xs); align-self: flex-start; }
.doc-title { font-size: 16px; font-weight: 800; color: var(--text-title); }
.doc-desc { font-size: 13px; color: var(--text-light); }
.doc-date { font-size: 12px; color: #a4adbc; margin-top: 4px; }


/* ---------------------------------------------------------
   9-9. 커뮤니티 가이드, 협의회 소개, 링크 모음
--------------------------------------------------------- */
/* 가이드 */
.guide-container { max-width: 800px; margin: 0 auto 80px; padding: 0 24px; }
.guide-card { background: var(--bg-card-alpha); border-radius: var(--radius-xl); padding: 40px; border: 1px solid var(--border-card); box-shadow: var(--shadow); }
.guide-header-center { text-align: center; }
.guide-badge-icon { display: inline-flex; width: 50px; height: 50px; font-size: 24px; border-radius: var(--radius-lg); margin-bottom: 15px; align-items: center; justify-content: center; font-weight: 900; }
.guide-card-title { font-size: 24px; color: var(--text-title); font-weight: 900; }
.guide-card-desc { color: var(--text-light); margin-top: 10px; font-size: 15px; }

.guide-warn-box {
    background: #fff8f8;
    border: 1px solid #fecaca;
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(224, 49, 49, 0.04);
}
.guide-warn-title {
    color: var(--red);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.45;
    word-break: keep-all;
}
.guide-warn-sub {
    color: var(--text-sub);
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.55;
    margin-top: 12px;
    word-break: keep-all;
}
.guide-warn-notice { text-align: center; color: var(--red); font-size: 14px; font-weight: 800; margin-top: 15px; }
.guide-dashed-line { border: none; border-top: 2px dashed #cbd5e1; margin: 40px 0 30px; }
.guide-section-head { font-size: 20px; font-weight: 900; color: #334155; margin-bottom: 25px; display: flex; align-items: center; gap: 8px; }
.guide-head-emoji { font-size: 24px; }
.step-list { margin-top: 25px; display: flex; flex-direction: column; gap: 40px; }
.step-item { display: flex; gap: 15px; align-items: flex-start; }
.step-num { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 16px; }
.step-num.blue { background: #e9f0ff; color: #6b8fc9; }
.step-num.yellow { background: #fff4b3; color: #b28900; }
.step-content { flex-grow: 1; overflow: hidden; }
.step-content h3 { font-size: 18px; color: #334155; margin-bottom: 8px; font-weight: 800; }
.step-content p { font-size: 15px; color: var(--text-muted); line-height: 1.6; word-break: keep-all; margin-bottom: 15px; }
.step-img { max-width: 100%; height: auto; border-radius: var(--radius-md); border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); display: block; }
.cafe-link-btn { display: flex; align-items: center; justify-content: center; margin-top: 30px; padding: 18px 24px; background: #03c75a; color: white; font-size: 18px; font-weight: 800; border-radius: 15px; text-decoration: none; box-shadow: 0 8px 20px rgba(3, 199, 90, 0.25); transition: all 0.3s ease; }
.cafe-link-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(3, 199, 90, 0.35); }
.kakao-btn-wrap { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.kakao-link-btn { display: flex; align-items: center; justify-content: center; padding: 18px 24px; background: #fee500; color: #3a1d1d; font-size: 18px; font-weight: 900; border-radius: 15px; text-decoration: none; box-shadow: 0 8px 20px rgba(254, 229, 0, 0.25); transition: all 0.3s ease; }
.kakao-link-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(254, 229, 0, 0.35); }
.kakao-link-btn.notice-room { background: #ffe033; }
.btn-desc-muted { font-size: 14px; font-weight: 500; color: #665528; }

/* 협의회 소개 */
.assoc-container { max-width: 900px; margin: 0 auto 80px; padding: 0 24px; }
.vision-card { 
    background: linear-gradient(135deg, #48658a 0%, #6c96d7 55%, #8f82d4 100%); 
    border-radius: var(--radius-xl); 
    padding: 40px; 
    text-align: center; 
    color: white; 
    box-shadow: var(--shadow); 
    margin-bottom: 40px; 
    position: relative; 
    overflow: hidden; 
}
.vision-card::after { content: 'HAUSTORY'; position: absolute; right: -20px; bottom: -30px; font-size: 100px; font-weight: 900; color: rgba(255, 255, 255, 0.05); letter-spacing: -2px; pointer-events: none; }
.vision-title { font-size: 24px; font-weight: 900; margin-bottom: 15px; z-index: 1; position: relative; word-break: keep-all; line-height: 1.45; }
.vision-desc { font-size: 16px; line-height: 1.75; opacity: 0.92; z-index: 1; position: relative; word-break: keep-all; }
.pc-br { display: inline; }
.mob-br { display: none; }
.goal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.goal-card { background: var(--bg-card-alpha); border: 1px solid var(--border-card); border-radius: var(--radius-lg); padding: 30px 20px; text-align: center; box-shadow: var(--shadow); transition: transform 0.2s ease; }
.goal-card:hover { transform: translateY(-5px); }
.goal-icon { font-size: 36px; margin-bottom: 15px; }
.goal-title { font-size: 18px; font-weight: 800; color: var(--text-title); margin-bottom: 10px; word-break: keep-all; }
.goal-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; word-break: keep-all; }
.org-flat-container { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow); }
.org-group-title { font-size: 16px; font-weight: 800; color: var(--text-muted); margin-bottom: 15px; text-align: center; }
.officer-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.officer-card { background: var(--bg-sub); border: 1px solid #cbd5e1; padding: 16px 24px; border-radius: var(--radius-md); text-align: center; min-width: 140px; flex: 1 1 auto; max-width: 200px; box-sizing: border-box; }
.officer-role { font-size: 13px; font-weight: 800; color: #6c96d7; margin-bottom: 6px; }
.officer-name { font-size: 16px; font-weight: 800; color: #334155; word-break: keep-all; }
.officer-nick { font-size: 13px; font-weight: 600; color: var(--text-caption); display: block; margin-top: 2px; }
.exec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.exec-card { background: #fff; border: 1px solid var(--border-light); padding: 12px; border-radius: 10px; text-align: center; font-size: 14px; font-weight: 700; color: var(--text-sub); display: flex; align-items: center; justify-content: center; gap: 6px; word-break: keep-all; }
.exec-role { font-size: 11px; font-weight: 800; background: #eef2f6; color: var(--text-muted); padding: 3px 8px; border-radius: var(--radius-xs); flex-shrink: 0; }
.join-box { background: var(--bg-sub); border-left: 4px solid #6c96d7; padding: 25px 30px; border-radius: 0 16px 16px 0; margin-top: 50px; }
.join-box h3 { font-size: 18px; font-weight: 800; color: var(--text-title); margin-bottom: 12px; word-break: keep-all; line-height: 1.45; }
.join-box p { font-size: 14px; color: #53627e; line-height: 1.7; word-break: keep-all; }

/* 관련 링크 */
.links-container { max-width: 900px; margin: 0 auto 80px; padding: 0 24px; }
.link-section-title { font-size: 20px; font-weight: 800; color: var(--text-title); margin: 40px 0 20px; display: flex; align-items: center; gap: 8px; }
.link-section-title::before { content: ''; display: inline-block; width: 4px; height: 18px; background: #6c96d7; border-radius: 2px; }
.link-section-title:first-child { margin-top: 0; }
.link-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.link-card { display: flex; align-items: flex-start; gap: 20px; background: var(--bg-card-alpha); border-radius: var(--radius-xl); padding: 25px; border: 1px solid var(--border-card); box-shadow: var(--shadow); text-decoration: none; transition: all 0.25s ease; }
.link-icon { flex: 0 0 auto; width: 56px; height: 56px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 28px; transition: all 0.25s ease; }
.link-card.naver .link-icon { background: #03c75a; color: white; }
.link-card.naver:hover { border-color: #03c75a; transform: translateY(-5px); box-shadow: 0 8px 20px rgba(3, 199, 90, 0.15); }
.link-card.kakao .link-icon { background: #fee500; color: #3a2929; }
.link-card.kakao:hover { border-color: #fee500; transform: translateY(-5px); box-shadow: 0 8px 20px rgba(254, 229, 0, 0.25); }
.link-card.insta .link-icon { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; }
.link-card.insta:hover { border-color: #e6683c; transform: translateY(-5px); box-shadow: 0 8px 20px rgba(220, 39, 67, 0.15); }
.link-card.general .link-icon { background: #f0f4f8; color: #6c96d7; }
.link-card.general:hover { border-color: #6c96d7; transform: translateY(-5px); box-shadow: 0 8px 20px rgba(108, 150, 215, 0.15); }
.link-info { display: flex; flex-direction: column; gap: 6px; }
.link-title { font-size: 18px; font-weight: 800; color: var(--text-title); display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.link-title::after { content: '↗'; font-size: 14px; color: var(--text-caption); font-weight: normal; }
.link-card.naver:hover .link-title { color: #03c75a; }
.link-card.kakao:hover .link-title { color: var(--yellow-dark); }
.link-card.insta:hover .link-title { color: #dc2743; }
.link-card.general:hover .link-title { color: #6c96d7; }
.link-desc { font-size: 14px; color: var(--text-light); line-height: 1.5; }


/* =========================================================
   10. ANIMATIONS & KEYFRAMES (공통 키프레임 애니메이션)
========================================================= */
@keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 6px rgba(245, 34, 45, 0.6); }
    50% { transform: scale(0.92); opacity: 0.55; box-shadow: 0 0 2px rgba(245, 34, 45, 0.2); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 5px rgba(127, 174, 237, 0.12), 0 0 16px rgba(127, 174, 237, 0.35); }
    50% { box-shadow: 0 0 0 9px rgba(127, 174, 237, 0.04), 0 0 25px rgba(127, 174, 237, 0.52); }
}

/* 오늘 기준점 전용 레이더 확장 애니메이션 */
@keyframes radarWave {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
    100% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
    }
}

@keyframes liveBlink {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px #22c55e; }
    50% { opacity: 0.4; box-shadow: 0 0 2px #22c55e; }
}

@keyframes progressGrow { 0% { width: 0%; } }
@keyframes delegationGrow { 0% { width: 0%; } }
@keyframes shine { 0% { left: -100px; } 100% { left: 110%; } }
@keyframes waveShine { 0% { background-position: 200% center; } 100% { background-position: 0% center; } }

.shine-blue {
    background: linear-gradient(90deg, #82afea, #91b9ee, #a9abe8);
    background-size: 200% 100%;
    animation: waveShine 2s linear infinite;
}
.shine-orange {
    background: linear-gradient(90deg, #d99c6b 25%, #f4cca8 50%, #d99c6b 75%);
    background-size: 200% 100%;
    animation: waveShine 2s linear infinite;
}


/* =========================================================
   11. UNIFIED RESPONSIVE MEDIA QUERIES (통합 반응형 미디어 쿼리)
========================================================= */
@media (max-width: 1050px) {
    /* 우측 상단 플로팅 파스텔 카드 (아이스 블루 & 라벤더 글래스 틴트) */
    nav { 
        display: flex;
        position: absolute; 
        top: 68px; 
        right: 20px; 
        left: auto;
        width: 145px; 
        z-index: 100; /* 하단 컨텐츠와 겹침 방지 */
        background: linear-gradient(160deg, rgba(218, 234, 255, 0.92) 0%, rgba(230, 224, 255, 0.92) 100%); 
        backdrop-filter: blur(18px); 
        -webkit-backdrop-filter: blur(18px);
        flex-direction: column; 
        padding: 8px 6px; 
        gap: 3px;
        border-radius: var(--radius-lg);
        /* 반투명 글래스 흰색 테두리 및 깊이감 있는 앰비언트 섀도우 */
        border: 1px solid rgba(255, 255, 255, 0.85);
        box-shadow: 0 16px 36px rgba(45, 75, 130, 0.24), 
                    0 4px 12px rgba(111, 159, 232, 0.18),
                    inset 0 1px 2px rgba(255, 255, 255, 0.7); 
        
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px) scale(0.96);
        transform-origin: top right;
        pointer-events: none;
        transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }
    nav.active-mobile { 
        visibility: visible;
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    /* 시작·끝 글자 대칭 및 가운데 정렬 */
    nav a {
        width: 100%;
        padding: 10px 0;
        font-size: 14.5px;
        font-weight: 800;
        color: #31435f; /* 파스텔 배경 위에서 또렷하게 읽히는 딥 슬레이트 블루 */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: var(--radius-sm);
        border: none;
        transition: all 0.2s ease;
    }
    nav a::after { display: none !important; }
    nav a:hover {
        background: rgba(255, 255, 255, 0.55);
        color: #1d4ed8;
    }
    nav a.active {
        /* 선택된 메뉴는 깔끔한 소프트 화이트 캡슐 알약 효과 */
        background: #ffffff;
        color: #1d4ed8;
        box-shadow: 0 2px 8px rgba(65, 105, 175, 0.15);
        transform: none !important;
    }

    #mobile-menu-btn { display: flex; }
    .quick-menu { grid-template-columns: repeat(3, 1fr); }
    .info-grid { grid-template-columns: repeat(3, 1fr); }
    .notice-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
    .calc-wrapper { grid-template-columns: 1fr; padding: 0 16px; margin-bottom: 50px; gap: 20px; }
    .calc-card { padding: 20px 16px; border-radius: var(--radius-lg); }
    .result-label { font-size: 13.5px; }
    .result-val { font-size: 15px; }
    .btn-calc-copy { font-size: 14px; padding: 15px 16px; }
}

@media (max-width: 768px) {
    input[type="text"],
    input[type="number"],
    input[type="tel"],
    input[type="password"],
    select,
    textarea {
        font-size: 16px !important;
    }

    .sub-page-header { padding: 40px 18px 25px; }
    .sub-page-title { font-size: 26px; }
    .assoc-container { padding: 0 16px; margin-bottom: 50px; }
    .vision-card { padding: 28px 20px; }
    .vision-title { font-size: 20px; }
    .vision-desc { font-size: 14.5px; }
    .pc-br { display: none; }
    .mob-br { display: inline; }

    .goal-grid { grid-template-columns: 1fr; gap: 14px; }
    .goal-card { padding: 24px 18px; }

    .org-flat-container { padding: 24px 16px; border-radius: var(--radius-lg); }
    .officer-grid { flex-direction: column; gap: 10px; }
    .officer-card { width: 100%; max-width: 100%; min-width: 0; padding: 16px 14px; }
    .exec-grid { grid-template-columns: 1fr; }

    .join-box { padding: 20px 18px; margin-top: 35px; }
    .join-box h3 { font-size: 16.5px; }
    .join-box p { font-size: 13.5px; }

    .link-grid { grid-template-columns: 1fr; gap: 15px; }
    .link-card { padding: 20px; }
    .link-icon { width: 48px; height: 48px; font-size: 24px; border-radius: var(--radius-md); }
    .link-title { font-size: 16px; }

    .progress-grid { grid-template-columns: 1fr !important; }

    /* 768px 이하 해상도에서 3개씩 2줄(3열 2행)로 균등 배치 */
    .tab-menu {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .tab-btn {
        width: 100%;
        padding: 11px 0;
        text-align: center;
    }
}

@media (max-width: 650px) {
    #header-container { min-height: 63px; }
    header { height: 63px; }
    .header-inner { padding: 0 18px; }
    .logo { font-size: 14px; gap: 8px; }
    .logo-mark { width: 31px; height: 31px; border-radius: 11px; font-size: 15px; }
    .social-links { gap: 6px; }
    .social-link { width: 31px; height: 31px; }
    .social-icon { width: 29px; height: 29px; border-radius: 9px; font-size: 16px; }
    nav { top: 58px; right: 14px; width: 135px; } /* 모바일 화면에 맞춰 깔끔한 135px 폭으로 최적화 */

    .hero { min-height: 405px; }
    .hero-inner { padding: 65px 18px 75px; }
    .hero h1 { font-size: 34px; letter-spacing: -1.5px; }
    .hero p { font-size: 14px; line-height: 1.7; }
    .hero-badge { font-size: 11px; padding: 7px 12px; }
    .quick-wrap { margin-top: -35px; padding: 0 18px; }
    .quick-menu { grid-template-columns: repeat(3, 1fr); gap: 9px; }
    .quick-item { min-height: 91px; border-radius: 18px; }
    .quick-icon { width: 36px; height: 36px; border-radius: var(--radius-md); font-size: 17px; }
    .quick-title { font-size: 11px; }

    .hero-dday { top: 16px; left: 18px; gap: 4px; }
    .dday-row { font-size: 11.5px; gap: 6px; }
    .dday-val { font-size: 14.5px; }

    .visitor-counter { top: 16px; right: 18px; gap: 5px; }
    .vc-row { font-size: 11.5px; gap: 8px; }
    .vc-val { font-size: 13px; min-width: 36px; }
    
    .hero-content { padding-top: 46px !important; } 
    .hero-action-wrap { margin-top: 18px; gap: 8px; width: fit-content; }
    .hero-cafe-btn { padding: 11px 16px; font-size: 13px; width: fit-content; }
    .hero-cafe-btn .sub-badge { font-size: 10px; padding: 2px 5px; }
    .hero-sub-row { gap: 8px; }
    .hero-sub-btn { padding: 10px 8px; font-size: 12.5px; }

    .section { padding: 18px 18px; }
    .section-header { margin-bottom: 17px; }
    .section-title { font-size: 21px; }
    .section-title::before { width: 6px; height: 21px; margin-right: 8px; }
    .notice-list {margin-right: -18px; padding-right: 18px;}
    .notice-card { flex: 0 0 82%; min-height: 120px; padding: 19px; border-radius: 18px; }
    .notice-card h3 { font-size: 14px; }
    .notice-grid { grid-template-columns: 1fr; gap: 15px; }

    /* 타임라인 모바일 */
    .timeline { padding-left: 30px; margin-top: 20px; margin-bottom: 20px; }
    .timeline::before { left: 6px !important; top: 25px !important; bottom: 25px !important; }
    .tl-dot { left: -30px; top: 18px; width: 14px; height: 14px; }
    .tl-item::before { left: -24px; top: 24px; width: 24px; }
    .tl-today { left: -30px; margin: 20px 0; }
    .today-dot { width: 14px; height: 14px; }
    .today-line { width: 18px; }
    .today-text { font-size: 13px; padding: 4px 10px; }
    .tl-item { padding: 16px 18px; margin-bottom: 16px; border-radius: var(--radius-lg); }
    .tl-title { font-size: 15.5px; }
    .tl-date { font-size: 12.5px; }

    .schedule-container { padding: 0 16px; margin-bottom: 50px; }
    .full-timeline { padding-left: 30px; margin-top: 24px; }
    .timeline-bar { left: 6px; }
    .full-timeline .tl-dot { left: -30px; top: 20px; width: 14px; height: 14px; }
    .full-timeline .tl-item::before { left: -22px; top: 26px; width: 22px; }
    .full-timeline .tl-today { left: -30px; margin: 26px 0; }
    .full-timeline .today-line { width: 20px; }

    /* FAQ 모바일 */
    .faq-page-container { padding: 0 16px; margin-bottom: 50px; }
    .faq-question { padding: 18px 16px; gap: 12px; }
    .faq-question-inner { padding-left: 34px; font-size: 15px; }
    .faq-q-badge { width: 24px; height: 24px; font-size: 12px; }
    .faq-arrow { width: 24px; height: 24px; font-size: 10px; margin-right: 10px; }
    .faq-item .card-new-dot { top: 26px; right: 13px; }
    .faq-answer-inner { padding: 16px 16px 20px 50px; font-size: 13.5px; }
    .faq-answer-inner::before { left: 16px; top: 16px; width: 24px; height: 24px; font-size: 12px; }
    .quick-new-dot { top: 10px; right: 10px; }

    /* 공사현황 & 위임동의 & 배너 모바일 */
    .progress-card { padding: 21px; border-radius: 21px; }
    .progress-percent { font-size: 24px; }
    .delegation-card { padding: 22px; border-radius: 21px; }
    .delegation-title { font-size: 18px; }
    .delegation-stats { gap: 7px; }
    .stat { padding: 12px 7px; border-radius: 14px; }
    .stat-value { font-size: 15px; }
    .info-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .info-card { min-height: 105px; padding: 14px 10px; border-radius: var(--radius-lg); }
    .info-card h3 { font-size: 13px; margin-bottom: 2px; letter-spacing: -0.5px; }
    .info-card p { font-size: 10px; line-height: 1.35; letter-spacing: -0.5px; }

    .bottom-banner { padding: 0 18px; margin-bottom: 30px; }
    .bottom-banner-inner { padding: 24px 20px; border-radius: 21px; flex-direction: column; align-items: flex-start; gap: 15px; }
    .banner-text h2 { font-size: 17px; }
    .banner-button { width: 100%; text-align: center; }

    .footer-wrap { padding: 30px 20px 50px; margin-top: 10px; }
    .footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    /* 모바일에서 문의 박스 수직 정렬 */
    .footer-contact-box { flex-direction: column; align-items: flex-start; gap: 12px; padding: 14px 16px; }

    .guide-card { padding: 30px 20px; }
    .step-content h3 { font-size: 16px; }
    .step-content p { font-size: 14px; }
    .cafe-link-btn { font-size: 16px; padding: 16px 20px; }
    .kakao-link-btn { font-size: 16px; padding: 16px 20px; flex-direction: column; gap: 4px; text-align: center; }
    .btn-desc-muted { font-size: 12px !important; }

    /* 동의서 폼 모바일 */
    .content-box { padding: 20px; }
    .form-row { flex-direction: column; gap: 0; }
    .term-table th, .term-table td { font-size: 13px; padding: 10px; }
    .pre-contract-warning { padding: 25px 15px; border-width: 1px; }
    .pcw-title { font-size: 17px; }
    .pcw-desc { font-size: 13px; }
    #postcode-layer-modal .modal-content { width: 94vw; padding: 16px; border-radius: 14px; }
    #postcode-layer-modal .modal-header { margin-bottom: 8px; }
    #daum-postcode-wrap { height: min(450px, 68vh); }

    /* 평면도 모바일 */
    .tab-btn { padding: 10px 0; font-size: 13.5px; }
    .comment-row { flex-direction: column; }
    .comment-author-input { max-width: 100% !important; }

    /* 상세 페이지 모바일 */
    .detail-container { margin: 20px auto 50px; } 
    .detail-title { font-size: 22px; } 
    .notion-body-content { font-size: 15px; }
    .big-percent-badge { font-size: 16px; padding: 6px 12px; }
    .doc-item { flex-direction: column; align-items: flex-start; gap: 15px; padding: 18px; }

    /* 사업진행 모바일 */
    .progress-page-container { padding: 0 16px !important; margin-bottom: 40px; }
    .integrated-progress-card { padding: 22px 18px !important; border-radius: var(--radius-xl) !important; margin-bottom: 24px !important; }
    .ipc-rate-val { font-size: 32px !important; }
    .play-slideshow-btn { padding: 8px 16px !important; font-size: 12.5px !important; }
    .site-photo-card { border-radius: var(--radius-xl) !important; padding: 14px !important; }
    .summary-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
    .summary-card { padding: 18px 16px !important; }
    .table-container { padding: 20px 16px !important; border-radius: var(--radius-xl) !important; margin-bottom: 20px !important; }
    .progress-desktop-table { display: none !important; }
    .progress-mobile-list { display: flex !important; }
    
    .progress-grid {
        padding: 14px 18px 28px 12px !important;
        margin-left: -12px;
        margin-right: -18px;
    }
    .progress-list-card {
        flex: 0 0 82% !important;
        padding: 18px !important;
    }
}

/* 감각 완화 및 모션 축소 대응 */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { 
        animation-duration: 0.01ms !important; 
        animation-iteration-count: 1 !important; 
        transition-duration: 0.01ms !important; 
    }
}

@media (max-width: 850px) {
    .status-grid-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pvc-img-box {
        height: 200px;
    }
    .stat {
        padding: 16px 8px;
    }
    .stat-value {
        font-size: 18px;
    }
}

/* 모바일에서는 화면의 82% 폭으로 보여 뒤 카드 힌트 노출 */
    .progress-list-card {
        flex: 0 0 82% !important;
        padding: 18px !important;
    }