@charset "UTF-8";

/* ==========================================================
   1. Variables & Global Settings (프리미엄 컬러 & 폰트)
   ========================================================== */
:root {
    --main-dark: #212529; 
    --main-light: #343a40;
    --point-color: #00985f; /* 그린보청기 시그니처 에메랄드 그린 */
    --point-dark: #00764a;
    --text-color: #212529;
    --text-light: #495057;
    --bg-light: #f8f9fa; /* 깔끔한 쿨그레이 배경 */
    --white: #ffffff;
    --border-color: #e9ecef;
    
    /* 최상위 프리미엄 폰트 '프리텐다드' 적용 */
    --font-sans: 'Pretendard', 'Noto Sans KR', sans-serif;
    --font-serif: 'Noto Serif KR', serif; 
    
    /* 부드럽고 넓은 그림자 */
    --shadow-soft: 0 20px 40px rgba(0,0,0,0.03);
    --shadow-hover: 0 25px 50px rgba(0, 152, 95, 0.08);
}

/* 모든 브라우저 기본 마침표(불릿) 강제 삭제 (더블 불릿 완벽 방지) */
ul, li { list-style: none !important; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font-sans); color: var(--text-color); line-height: 1.7; word-break: keep-all; background-color: var(--white); letter-spacing: -0.3px; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: var(--white) !important; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 60px; } 
.font-serif { font-family: var(--font-serif); }

/* Grid Systems */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; } 
.align-center { align-items: center; } /* 수직 중앙 정렬용 */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

/* Buttons & Typography */
.btn-primary { display: inline-block; padding: 20px 55px; background-color: var(--point-color); color: var(--white); font-weight: 700; border-radius: 50px; font-size: 1.15rem; transition: all 0.3s ease; box-shadow: 0 10px 25px rgba(0, 152, 95, 0.3); text-decoration: none; }
.btn-primary:hover { background-color: var(--main-dark); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); transform: translateY(-3px); color: var(--white); }
.section-tag { display: inline-block; color: var(--point-color); font-weight: 800; text-transform: uppercase; margin-bottom: 20px; letter-spacing: 2px; font-size: 0.95rem; }
.section-title { font-size: 3.2rem; font-weight: 400; line-height: 1.35; margin-bottom: 25px; color: var(--main-dark); letter-spacing: -1.5px; } 
.section-title b { font-weight: 800; color: var(--main-dark); }
.section-desc { font-size: 1.2rem; color: var(--text-light); margin-bottom: 60px; font-weight: 400; }
section { padding: 140px 0; overflow: hidden; } 

/* ==========================================================
   2. Header & GNB (메뉴 앞 마침표 완벽 제거됨)
   ========================================================== */
#header { width: 100%; height: 90px; background-color: rgba(255,255,255,0.95); backdrop-filter: blur(10px); position: fixed; top: 0; left: 0; z-index: 1000; display: flex; align-items: center; border-bottom: 1px solid rgba(0,0,0,0.05); }
#header .container { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 1.8rem; color: var(--main-dark); font-weight: 400; letter-spacing: -1px; text-decoration: none; }
.logo b { font-weight: 800; color: var(--point-color); } 
.gnb ul { display: flex; gap: 40px; list-style: none; }
.gnb li { list-style: none; }
.gnb a { font-weight: 600; font-size: 1.1rem; transition: color 0.3s; color: var(--main-dark); text-decoration: none; }
.gnb a:hover { color: var(--point-color); }

/* ==========================================================
   3. Quick Sidebar (SVG 아이콘 사이드바)
   ========================================================== */
.quick-sidebar { position: fixed; right: 30px; top: 50%; transform: translateY(-50%); z-index: 999; display: flex; flex-direction: column; gap: 15px; }
.q-btn { display: flex; align-items: center; background: var(--white); border-radius: 50px; padding: 6px; text-decoration: none; color: var(--main-dark); font-weight: 700; font-size: 1rem; box-shadow: var(--shadow-soft); width: 46px; height: 46px; overflow: hidden; transition: width 0.4s ease, background 0.3s; white-space: nowrap; }
.q-btn img, .q-btn svg { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; }
.q-btn span { opacity: 0; margin-left: 12px; transition: opacity 0.3s ease; }
.q-btn:hover { width: 170px; padding-right: 25px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.q-btn:hover span { opacity: 1; }

/* ==========================================================
   4. Hero Section
   ========================================================== */
.hero { height: 100vh; position: relative; display: flex; align-items: center; padding: 0; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(26,27,30,0.85) 0%, rgba(26,27,30,0.2) 100%); }
.hero-content { position: relative; z-index: 2; color: var(--white); margin-top: 50px; }
.open-date { display: inline-block; font-size: 1.1rem; font-weight: 700; color: var(--point-color); background: rgba(255,255,255,0.95); padding: 8px 22px; border-radius: 30px; margin-bottom: 25px; letter-spacing: 1px; }
.main-copy { font-size: 5rem; font-weight: 300; line-height: 1.25; margin-bottom: 25px; letter-spacing: -2.5px; }
.main-copy b { font-weight: 800; }
.sub-copy { font-size: 1.4rem; margin-bottom: 50px; color: rgba(255,255,255,0.85); font-weight: 300; line-height: 1.7; }

/* ==========================================================
   5. Hook & Pain Point
   ========================================================== */
.checklist-wrap { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 20px; box-shadow: var(--shadow-soft); border-top: 6px solid var(--point-color); }
.checklist-wrap h4 { font-size: 2rem; font-weight: 300; margin-bottom: 40px; letter-spacing: -1px; }
.checklist-wrap h4 b { font-weight: 800; color: var(--point-color); }
.checklist li { font-size: 1.15rem; margin-bottom: 15px; padding: 20px 25px; background: var(--bg-light); border-radius: 12px; display: flex; align-items: center; color: var(--text-color); font-weight: 500; transition: transform 0.3s; }
.checklist li:hover { transform: translateX(10px); background: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.checklist li span { color: var(--point-color); font-size: 1.5rem; margin-right: 20px; }
.check-result { font-size: 1.1rem; color: #e74c3c; font-weight: 600; text-align: center; }

/* ==========================================================
   6. Stats (가시성 완벽 개선)
   ========================================================== */
.stats { background-color: var(--main-dark); position: relative; padding: 120px 0; }
.stats .container { position: relative; z-index: 2; }
.stat-box { color: var(--white); }
.stat-box strong { font-size: 5rem; font-weight: 800; line-height: 1; display: inline-block; margin-bottom: 15px; font-family: var(--font-sans); letter-spacing: -2px; }
.stat-box span { font-size: 1.5rem; font-weight: 800; color: var(--point-color); margin-left: 5px; } 
.stat-box p { font-size: 1.1rem; color: #ced4da; font-weight: 400; } 

/* ==========================================================
   7. About CEO & ★가로 무한 롤링 배너★
   ========================================================== */
.about-img img { border-radius: 20px; box-shadow: var(--shadow-soft); width: 100%; }
.about-text .greeting { font-size: 1.4rem; font-weight: 700; color: var(--main-dark); margin-bottom: 25px; }
.history-list { list-style: none !important; padding: 0; margin: 0; }
.history-list li { position: relative; padding-left: 25px; margin-bottom: 15px; font-size: 1.1rem; color: var(--text-color); font-weight: 500; list-style: none !important; }
.history-list li::before { content: ''; position: absolute; top: 11px; left: 0; width: 8px; height: 8px; background-color: var(--point-color); border-radius: 50%; }

/* 무한 롤링 가로 갤러리 디자인 */
.ceo-gallery-wrap { position: relative; width: 100%; overflow: hidden; padding: 20px 0; border-top: 1px solid var(--border-color); margin-top: 80px; padding-top: 60px; }
.gallery-title { font-size: 1.2rem; font-weight: 800; color: var(--main-dark); margin-bottom: 30px; text-align: center; letter-spacing: 2px; text-transform: uppercase; }
/* 핵심: 트랙을 가로로 길게 뻗게 하고 좌측으로 흘러가는 애니메이션 적용 */
.gallery-track { display: flex; gap: 20px; width: max-content; animation: scrollHorizontal 30s linear infinite; }
.gallery-track:hover { animation-play-state: paused; } /* 마우스 오버 시 일시 정지 UX */

.g-slide { flex-shrink: 0; width: 340px; height: 230px; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow-soft); background: var(--bg-light); cursor: pointer; }
.g-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.g-slide:hover img { transform: scale(1.08); }

/* 애니메이션 키프레임: 전체 트랙의 절반(1세트 분량)만큼 좌측으로 이동 후 리셋 */
@keyframes scrollHorizontal {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); } /* gap(20px)의 절반을 보정 */
}

/* ==========================================================
   8. Network (브랜드 파워 3호점)
   ========================================================== */
.branch-card { background: var(--white); border-radius: 15px; overflow: hidden; box-shadow: var(--shadow-soft); transition: 0.4s; }
.branch-card img { width: 100%; height: 220px; object-fit: cover; filter: grayscale(80%); transition: 0.5s; }
.branch-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.branch-card:hover img { filter: grayscale(0%); }
.branch-info { padding: 35px 25px; text-align: center; }
.branch-info h4 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; color: var(--main-dark); }
.highlight-branch { transform: translateY(-15px); box-shadow: 0 20px 40px rgba(0, 152, 95, 0.15); border: 2px solid var(--point-color); }
.highlight-branch img { filter: grayscale(0%); }
.highlight-branch h4 { color: var(--point-color); font-weight: 800; }

/* ==========================================================
   9. Expert Column
   ========================================================== */
.expert-column { background-color: var(--white); }
.column-text .description { font-size: 1.15rem; color: var(--text-light); line-height: 1.8; }
.column-img img { border-radius: 50% 20px 20px 20px; box-shadow: -20px 20px 0 var(--bg-light); width: 100%; }

/* ==========================================================
   10. Core Strengths (그린/일반/대학병원 3단 막대그래프)
   ========================================================== */
.g-card { background: var(--white); border-radius: 15px; box-shadow: var(--shadow-soft); transition: 0.4s ease; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; border: none; }
.g-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.g-text { padding: 40px 30px 20px; }
.g-text h4 { font-size: 1.3rem; font-weight: 800; color: var(--main-dark); margin-bottom: 12px; letter-spacing: -0.5px; }
.g-text p { font-size: 0.95rem; color: var(--text-light); line-height: 1.5; }

.css-chart { display: flex; justify-content: center; align-items: flex-end; gap: 20px; height: 160px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.bar-wrap { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; width: 35px; position: relative; }
.bar { display: block; width: 100%; border-radius: 4px 4px 0 0; transform-origin: bottom; animation: barGrow 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
.bar.point { background: var(--point-color); z-index: 3; }
.bar.gray { background: #e9ecef; z-index: 1; }
.bar.hospital { background: #868e96; z-index: 2; }
.bar-wrap p { margin-top: 10px; font-size: 0.8rem; font-weight: 700; color: var(--text-light); }
@keyframes barGrow { 0% { transform: scaleY(0); } 100% { transform: scaleY(1); } }

/* ==========================================================
   11. Process (5단계 시스템)
   ========================================================== */
.process-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; text-align: left; }
.p-card { background: var(--white); padding: 50px 30px; border-radius: 15px; box-shadow: var(--shadow-soft); transition: all 0.4s ease; border: none; }
.p-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.step-badge { display: inline-block; background: var(--bg-light); color: var(--point-color); font-weight: 800; font-size: 0.85rem; padding: 8px 18px; border-radius: 30px; margin-bottom: 20px; letter-spacing: 1px; }
.p-card:hover .step-badge { background: var(--point-color); color: var(--white); }
.p-card h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 15px; line-height: 1.4; color: var(--main-dark); }
.p-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }

/* ==========================================================
   12. Facility Tour (시설 투어)
   ========================================================== */
.facility-grid { gap: 30px; }
.f-item { position: relative; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow-soft); }
.f-item img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.5s; }
.f-item:hover img { transform: scale(1.05); }
.f-item h5 { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: var(--white); padding: 30px 20px 20px; font-size: 1.25rem; font-weight: 700; text-align: left; }

/* ==========================================================
   13. Use Cases (성공 사례)
   ========================================================== */
.case-card { background: var(--white); padding: 50px; border-radius: 15px; border-top: 5px solid var(--point-color); box-shadow: var(--shadow-soft); }
.case-header { margin-bottom: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.tag-age { background: var(--main-dark); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: 700; }
.tag-issue { background: rgba(0, 152, 95, 0.1); color: var(--point-dark); padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: 700; }
.case-quote { font-family: var(--font-serif); font-size: 1.2rem; color: var(--text-color); line-height: 1.8; font-style: italic; position: relative; padding-left: 20px; letter-spacing: -0.5px; }
.case-quote::before { content: '"'; font-size: 5rem; color: #f1f3f5; position: absolute; top: -30px; left: -20px; font-family: serif; z-index: -1; }

/* ==========================================================
   14. Brands 
   ========================================================== */
.brand-logos { align-items: center; justify-items: center; max-width: 900px; margin: 0 auto; gap: 40px; }
.brand-logos img { filter: grayscale(100%) opacity(0.5); transition: all 0.3s; width: 100%; max-width: 200px; }
.brand-logos img:hover { filter: grayscale(0%) opacity(1); transform: scale(1.05); }

/* ==========================================================
   15. Pricing Table (가격표 불릿 완벽 디자인)
   ========================================================== */
.price-table-wrap { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.price-card { background: var(--white); border-radius: 15px; padding: 50px 25px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; transition: 0.4s; border: none; }
.price-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

.gov-card { background: var(--main-dark); color: var(--white); transform: scale(1.05); z-index: 10; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.gov-card:hover { transform: scale(1.05) translateY(-10px); }
.gov-header { margin-bottom: 35px; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 25px; }
.gov-header h5 { font-size: 1.3rem; font-weight: 500; margin-bottom: 10px; color: var(--white); opacity: 0.9; }
.gov-header h2 { font-size: 4rem; font-weight: 900; line-height: 1; letter-spacing: -2px; color: var(--white); }

.p-header { margin-bottom: 30px; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 20px; }
.p-header h5 { font-size: 1.3rem; font-weight: 700; color: var(--text-color); margin-bottom: 10px; }
.amount { font-size: 3.2rem; font-weight: 800; color: var(--main-dark); line-height: 1; letter-spacing: -2px; }
.amount span { font-size: 1.2rem; font-weight: 500; color: var(--text-light); letter-spacing: 0; }

.price-features { flex-grow: 1; margin-bottom: 30px; list-style: none !important; padding: 0; }
.price-features li { font-size: 0.95rem; color: var(--text-light); margin-bottom: 15px; padding-left: 15px; position: relative; line-height: 1.4; list-style: none !important; }
.price-features li::before { content: '·'; position: absolute; left: 0; top: 0; font-weight: 900; color: var(--point-color); font-size: 1.2rem; line-height: 1; }
.gov-card .price-features li { color: #ced4da; }
.gov-card .price-features li::before { color: var(--point-color); }

.btn-price { width: 100%; display: block; padding: 15px 0; background: var(--white); color: var(--main-dark); font-weight: 800; border-radius: 8px; text-align: center; font-size: 1.1rem; transition: 0.3s; text-decoration: none; }
.btn-price:hover { background: #f1f3f5; }
.btn-price-outline { width: 100%; display: block; padding: 15px 0; background: var(--bg-light); color: var(--point-dark); font-weight: 800; border-radius: 8px; text-align: center; font-size: 1.1rem; transition: 0.3s; text-decoration: none; }
.price-card:hover .btn-price-outline { background: var(--point-color); color: var(--white); }

/* ==========================================================
   16. Guarantee Card (반짝이는 보증카드)
   ========================================================== */
.guarantee-wrap { display: flex; flex-direction: column; align-items: center; }
.sparkle-card { position: relative; width: 100%; max-width: 450px; height: 260px; background: linear-gradient(135deg, #212529 0%, #343a40 100%); border-radius: 20px; color: var(--white); display: flex; flex-direction: column; justify-content: center; align-items: center; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.15); margin: 0 auto; }
.sparkle-card h5 { font-size: 1.1rem; color: var(--point-color); margin-bottom: 15px; letter-spacing: 4px; font-weight: 700; }
.sparkle-card h3 { font-size: 2rem; font-weight: 900; margin-bottom: 20px; font-family: var(--font-serif); }
.sparkle-card p { font-size: 1.3rem; font-weight: 300; }
.sparkle-card p b { color: #fcc419; font-size: 1.8rem; font-weight: 800; }
.sparkle-card .shine { position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); animation: shineEffect 4s infinite; }
@keyframes shineEffect { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }
.guarantee-text p { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; }

/* ==========================================================
   17. Subsidy 
   ========================================================== */
.subsidy-box { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 900px; margin: 0 auto; }
.box-item { background: var(--white); padding: 50px 30px; border-radius: 15px; box-shadow: var(--shadow-soft); transition: 0.4s; border: none; }
.box-item:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.box-item.highlight { border: 2px solid var(--point-color); background: rgba(0, 152, 95, 0.03); position: relative; }
.box-item.highlight::before { content: '추천/가장 많음'; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--point-color); color: var(--white); font-size: 0.85rem; font-weight: 700; padding: 6px 18px; border-radius: 20px; }
.box-item h5 { font-size: 1.3rem; font-weight: 600; color: var(--text-light); margin-bottom: 15px; }
.box-item .price { font-size: 1.5rem; color: var(--text-color); margin-bottom: 10px; }
.box-item .price b { font-size: 2.5rem; font-weight: 800; color: var(--point-color); }

/* ==========================================================
   18. FAQ
   ========================================================== */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--white); margin-bottom: 20px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.02); overflow: hidden; border: none; }
.faq-item summary { padding: 30px; font-size: 1.15rem; font-weight: 600; cursor: pointer; list-style: none; position: relative; color: var(--main-dark); line-height: 1.5; padding-right: 50px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 30px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; color: var(--point-color); font-weight: 300; transition: 0.3s; }
.faq-item[open] summary::after { content: '-'; }
.faq-item p { padding: 0 30px 30px 30px; font-size: 1.05rem; color: var(--text-light); line-height: 1.8; border-top: 1px solid var(--border-color); margin-top: 10px; padding-top: 20px; }

/* ==========================================================
   19. Contact & Footer
   ========================================================== */
.map-wrap { position: relative; margin-top: 40px; }
#map img { width: 100%; height: 500px; object-fit: cover; border-radius: 15px; }
.contact-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; background: var(--white); padding: 50px; border-radius: 15px; box-shadow: var(--shadow-soft); position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 1000px; }
.info-box strong { display: block; color: var(--point-color); font-weight: 800; margin-bottom: 10px; font-size: 1.1rem; }
.info-box p { color: var(--text-color); font-size: 1.05rem; }
.info-box p.phone { font-size: 1.6rem; font-weight: 800; letter-spacing: 1px; }

footer { background: var(--main-dark); color: #868e96; padding: 120px 0 150px 0; font-size: 1rem; }
footer p { margin-bottom: 10px; }
.copyright { margin-top: 20px; font-size: 0.85rem; letter-spacing: 1px; color: #495057; }
.mobile-bar { display: none; }

/* ==========================================================
   20. Responsive Design (모바일 & 태블릿 완벽 호환)
   ========================================================== */
@media (max-width: 1200px) {
    .price-table-wrap { grid-template-columns: repeat(3, 1fr); }
    .gov-card { grid-column: 1 / -1; transform: none; margin-bottom: 20px; }
}
@media (max-width: 1024px) {
    .quick-sidebar { display: none; }
    .graph-cards { grid-template-columns: repeat(2, 1fr); }
    .process-cards { grid-template-columns: repeat(3, 1fr); }
    section { padding: 100px 0; }
    .contact-info { bottom: -100px; }
}
@media (max-width: 768px) {
    html { font-size: 15px; }
    section { padding: 80px 0; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 40px; }
    #header { height: 70px; }
    .gnb { display: none; }
    .hero { height: 90vh; padding-top: 70px; }
    .main-copy { font-size: 3rem; letter-spacing: -1.5px; }
    .checklist-wrap { padding: 40px 20px; }
    .stats { padding: 80px 0; }
    .stats-wrap { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .stat-box strong { font-size: 4rem; }
    .bar-wrap { width: 35px; } 
    .graph-cards, .process-cards, .facility-grid, .subsidy-box { grid-template-columns: 1fr; }
    .column-img img { border-radius: 15px; box-shadow: none; margin-top: 20px; }
    .price-table-wrap { grid-template-columns: 1fr; gap: 20px; }
    .sparkle-card { max-width: 100%; height: 220px; }
    #map img { height: 350px; }
    .contact-info { position: static; transform: none; width: 100%; margin-top: 20px; grid-template-columns: 1fr; gap: 20px; padding: 30px 20px; text-align: center; }
    body { padding-bottom: 70px; } 
    .mobile-bar { display: flex; position: fixed; bottom: 0; left: 0; width: 100%; height: 70px; z-index: 9999; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); }
    .mobile-bar a { flex: 1; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; letter-spacing: 1px; color: var(--text-color); text-decoration: none; }
    .mobile-bar .btn-call { background: var(--bg-light); color: var(--main-dark); }
    .mobile-bar .btn-reserve { background: var(--point-color); color: var(--white); }
}