/* ========================================
   메인 페이지 V2 - 시안 정밀 매칭
   씨젠부산의원 리뉴얼
   모든 클래스 mv- 접두사 사용
   ======================================== */

/* ===== HERO SECTION ===== */
.mv-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: #111;
}
/* main 태그 앞의 빈 공간 제거 - 히어로가 최상단까지 올라가도록 */
body.page-v2 main {
    margin-top: -1px;
}
body.page-v2 .mv-hero {
    padding-top: 70px; /* 헤더 높이만큼 컨텐츠는 아래로 */
    height: calc(100vh + 70px);
    margin-top: -70px;
}
.mv-hero-swiper { width: 100%; height: 100%; }
.mv-hero-swiper .swiper-slide { position: relative; overflow: hidden; }
.mv-hero-slide-img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    object-position: center 40%;
    transform: scale(1);
    transition: transform 6s ease-out;
}
.swiper-slide.mv-kb-active .mv-hero-slide-img {
    transform: scale(1.08);
}
.mv-hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.30) 0%,
        rgba(0,0,0,0.40) 35%,
        rgba(0,0,0,0.65) 100%
    );
    display: flex; align-items: center; justify-content: center;
}
.mv-hero-content {
    text-align: center; color: #fff;
    padding: 0 20px; margin-top: 20px;
}
.mv-hero-content h1 {
    font-size: 2.6rem; font-weight: 900;
    letter-spacing: -1.5px; line-height: 1.4;
    margin-bottom: 14px;
    text-shadow: 0 3px 30px rgba(0,0,0,0.5);
}
.mv-hero-content .mv-hero-sub {
    font-size: 0.95rem; color: rgba(255,255,255,0.75);
    margin-bottom: 32px; line-height: 1.7;
    font-weight: 400;
}
.mv-hero-btns {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; flex-wrap: wrap;
}
.mv-hero-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 6px;
    font-size: 0.9rem; font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none; cursor: pointer;
}
.mv-hero-btn--primary {
    background: var(--color-primary); color: #fff;
}
.mv-hero-btn--primary:hover {
    background: #a50d24; color: #fff;
    transform: translateY(-2px);
}
.mv-hero-btn--outline {
    background: transparent; color: #fff;
    border: 1.5px solid rgba(255,255,255,0.6);
}
.mv-hero-btn--outline:hover {
    background: rgba(255,255,255,0.15); color: #fff;
    transform: translateY(-2px);
}
.mv-hero-btn i { font-size: 1rem; }

/* Hero pagination - 시안: 바(bar) 스타일 */
.mv-hero-pagination { bottom: 28px !important; z-index: 3; }
.mv-hero-pagination .swiper-pagination-bullet {
    width: 48px; height: 3px; border-radius: 3px;
    background: rgba(255,255,255,0.35); opacity: 1;
    margin: 0 3px !important; transition: all 0.4s;
}
.mv-hero-pagination .swiper-pagination-bullet-active {
    width: 64px; background: #fff;
}

/* 시안: 우하단 < > View More 한줄 */
.mv-hero-bottom-right {
    position: absolute; bottom: 28px; right: 32px; z-index: 3;
    display: flex; align-items: center; gap: 6px;
}
.mv-hero-arrow {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    background: transparent; color: rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s; font-size: 0.7rem;
}
.mv-hero-arrow:hover {
    border-color: rgba(255,255,255,0.7); color: #fff;
}
.mv-hero-divider {
    width: 1px; height: 16px; background: rgba(255,255,255,0.25); margin: 0 6px;
}
.mv-hero-viewmore {
    display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.6); font-size: 0.78rem; font-weight: 500;
    text-decoration: none; transition: color 0.3s;
}
.mv-hero-viewmore:hover { color: #fff; }
.mv-hero-viewmore i { font-size: 1.1rem; }

/* ===== QUICK MENU - 시안: 넓은 카드 + 원형 아이콘 ===== */
.mv-quick {
    padding: 44px 0 52px; background: #f9f9f9;
}
.mv-quick-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.mv-quick-card {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; text-decoration: none; color: inherit;
    padding: 32px 20px 28px;
    border: none; border-radius: 16px;
    transition: all 0.3s; background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.mv-quick-card:hover {
    color: inherit;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.mv-quick-icon {
    width: 80px; height: 80px; border-radius: 50%;
    border: 1.5px solid #ddd; background: transparent;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; transition: all 0.3s;
}
.mv-quick-icon i {
    font-size: 1.8rem; transition: all 0.3s;
}
/* 아이콘별 색상 */
.mv-quick-card:nth-child(1) .mv-quick-icon i { color: #8b7355; } /* 건강정보: 브라운 */
.mv-quick-card:nth-child(2) .mv-quick-icon i { color: #d4a853; } /* 주의사항: 골드 */
.mv-quick-card:nth-child(3) .mv-quick-icon i { color: #c8102e; } /* 홍보영상: 레드 */
.mv-quick-card:nth-child(4) .mv-quick-icon i { color: #5b9bd5; } /* 오시는길: 블루 */
.mv-quick-card:hover .mv-quick-icon {
    border-color: var(--color-primary); background: rgba(200,16,46,0.05);
}
.mv-quick-card:hover .mv-quick-icon i { color: var(--color-primary); }
.mv-quick-title {
    font-size: 1.05rem; font-weight: 800; color: #222; margin-bottom: 10px;
}
.mv-quick-desc {
    font-size: 0.8rem; color: #aaa; line-height: 1.6; margin: 0;
}

/* ===== ABOUT US - 시안: 건물사진 좌 / 텍스트 우 ===== */
.mv-about {
    padding: 88px 0 96px; background: #fff; overflow: hidden;
}
.mv-about-inner {
    display: flex; align-items: center; gap: 72px;
}
.mv-about-visual {
    flex-shrink: 0; position: relative; width: 400px;
}
.mv-about-img {
    width: 100%; aspect-ratio: 3/4;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.mv-about-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s ease;
}
.mv-about-img:hover img { transform: scale(1.03); }
/* 시안: 빨간 뱃지 좌하단 */
.mv-about-badge {
    position: absolute; bottom: -12px; left: 16px;
    background: var(--color-primary); color: #fff;
    border-radius: 10px; padding: 12px 20px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 6px 24px rgba(200,16,46,0.3);
    animation: mvFloat 3s ease-in-out infinite;
}
@keyframes mvFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
.mv-about-badge i { font-size: 1.1rem; }
.mv-about-badge-text strong {
    display: block; font-size: 0.85rem; font-weight: 800;
}
.mv-about-badge-text span {
    display: block; font-size: 0.72rem; font-weight: 500; opacity: 0.85;
}
.mv-about-body { flex: 1; min-width: 0; }
.mv-section-tag {
    display: inline-block; font-size: 0.7rem; font-weight: 700;
    color: var(--color-primary); letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 8px;
}
.mv-about-title {
    font-size: 2rem; font-weight: 900; color: #1a1a1a;
    letter-spacing: -1px; margin-bottom: 0;
}
.mv-about-line {
    width: 40px; height: 3px;
    background: var(--color-primary);
    border-radius: 3px; margin: 20px 0 24px;
}
.mv-about-desc {
    font-size: 0.92rem; color: #555; line-height: 1.9; margin-bottom: 12px;
}
.mv-about-desc strong { color: #1a1a1a; font-weight: 700; }
.mv-about-sub {
    font-size: 0.88rem; color: #999; line-height: 1.8; margin-bottom: 28px;
}
.mv-about-features {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 10px 28px;
}
.mv-about-feat {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.88rem; font-weight: 600; color: #444;
    padding: 5px 0;
}
.mv-about-feat::before {
    content: '✦'; color: var(--color-primary); font-size: 0.6rem;
}

/* ===== HEALTH CONTENT - 시안: 좌 이미지 / 우 텍스트 2패널 ===== */
.mv-health {
    padding: 72px 0 80px; background: #f7f7fa;
    position: relative; overflow: hidden;
}
.mv-health::after {
    content: ''; position: absolute;
    top: -80px; right: -80px; width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,16,46,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.mv-health .container { position: relative; z-index: 1; }
.mv-health-head {
    display: flex; align-items: baseline; gap: 16px;
    margin-bottom: 36px;
}
.mv-health-title {
    font-size: 2.2rem; font-weight: 900; color: #1a1a1a;
    letter-spacing: -0.5px;
}
.mv-health-title .mv-red-text {
    color: var(--color-primary); font-weight: 900;
}
.mv-health-sub {
    font-size: 0.8rem; font-weight: 600; color: var(--color-primary);
    margin-left: 16px; letter-spacing: 0; vertical-align: middle;
}
/* 카드: 좌 이미지(swiper) + 우 텍스트(고정) */
.mv-health-card {
    display: grid; grid-template-columns: 1fr 1fr;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    background: #fff; height: 420px;
}
/* 좌측: 이미지 swiper */
.mv-health-card-left {
    overflow: hidden; position: relative;
}
.mv-health-card-left .mv-health-swiper {
    width: 100%; height: 100%;
}
.mv-health-card-left .swiper-slide img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
/* 영상 썸네일 + 재생 버튼 */
.mv-health-video-thumb {
    position: relative; width: 100%; height: 100%; cursor: pointer;
}
.mv-health-video-thumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.mv-health-play-btn { display: none; }
.mv-health-video-thumb iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}
/* 우측: 텍스트 + 네비 */
.mv-health-card-right {
    display: flex; flex-direction: column;
    background: #fff; position: relative;
}
.mv-health-card-text {
    flex: 1; display: flex; flex-direction: column; justify-content: center;
    padding: 36px 110px 36px 40px; position: relative; /* 우측 버튼 공간 확보 */
}
.mv-health-card-category {
    font-size: 0.75rem; color: #999; font-weight: 600;
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 6px;
}
.mv-health-card-title {
    font-size: 1.25rem; font-weight: 800; color: #1a1a1a;
    line-height: 1.5; margin-bottom: 14px;
}
.mv-health-card-desc {
    font-size: 0.85rem; color: #888; line-height: 1.8;
}
/* 자세히보기 - 텍스트 우측 세로 중앙 */
.mv-health-card-more {
    position: absolute; top: 50%; right: 36px;
    transform: translateY(-50%);
    display: inline-flex; align-items: center; justify-content: center;
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--color-primary); color: #fff;
    font-size: 0.68rem; font-weight: 700;
    transition: all 0.3s;
    text-decoration: none; line-height: 1.2; text-align: center;
}
.mv-health-card-more:hover { background: #a50d24; color: #fff; transform: translateY(-50%) scale(1.05); }
/* 네비게이터 - 우측 패널 하단 고정 */
.mv-health-nav {
    display: flex; align-items: center;
    gap: 16px; padding: 20px 40px;
    border-top: 1px solid #f0f0f0;
}
.mv-health-counter {
    font-size: 0.95rem; font-weight: 700; color: #222;
    min-width: 60px;
}
.mv-health-counter span { color: #ccc; font-weight: 400; }
.mv-health-progress {
    width: 140px; height: 2.5px; background: #ddd;
    border-radius: 3px; overflow: hidden;
}
.mv-health-progress-bar {
    height: 100%; background: #222; border-radius: 3px; transition: width 0.4s;
}
.mv-health-ctrl-btn {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1.5px solid #ccc; background: #fff; color: #666;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s; font-size: 0.8rem;
}
.mv-health-ctrl-btn:hover { border-color: #333; color: #333; }

/* ===== ONE CLICK 건강정보 - 시안: 4열 카드 ===== */
.mv-oneclick {
    padding: 72px 0 80px; background: #fff;
}
.mv-oneclick-title {
    text-align: center; font-size: 1.8rem; font-weight: 900;
    color: #1a1a1a; margin-bottom: 44px; letter-spacing: -0.5px;
}
.mv-oneclick-title span { color: var(--color-primary); }
.mv-oneclick-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.mv-oneclick-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    text-decoration: none; color: inherit;
    transition: all 0.3s; border: 1px solid #f0f0f0;
}
.mv-oneclick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.07);
    color: inherit; border-color: transparent;
}
.mv-oneclick-card-img {
    width: 100%; aspect-ratio: 4/3; overflow: hidden;
    background: #fafafa;
}
.mv-oneclick-card-img img { width: 100%; height: 100%; object-fit: contain; }
.mv-oneclick-card-body { padding: 16px 18px 20px; }
.mv-oneclick-card-tag {
    font-size: 0.68rem; color: var(--color-primary);
    font-weight: 700; margin-bottom: 4px;
}
.mv-oneclick-card-title {
    font-size: 0.82rem; font-weight: 700; color: #333;
    line-height: 1.5; margin-bottom: 6px;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.mv-oneclick-card-date { font-size: 0.7rem; color: #bbb; }

/* ===== 5단계 프로세스 - 시안: 좌 레드 / 우 사진 ===== */
.mv-process {
    display: flex; overflow: hidden; max-height: 620px;
}
.mv-process-text {
    flex: 0 0 50%; background: var(--color-primary); color: #fff;
    display: flex; flex-direction: column; justify-content: center;
    padding: 0;
}
.mv-process-text-inner {
    max-width: 680px; margin: 0 auto; padding: 52px 48px;
}
.mv-process-tag {
    font-size: 0.9rem; font-weight: 500;
    color: rgba(255,255,255,0.55); letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.mv-process-title {
    font-size: 1.6rem; font-weight: 300; line-height: 1.7;
    margin-bottom: 36px; color: rgba(255,255,255,0.85);
}
.mv-process-title strong { font-weight: 900; color: #fff; }
.mv-process-steps {
    display: flex; flex-direction: column; gap: 22px;
}
.mv-process-step {
    display: flex; align-items: center; gap: 20px;
}
.mv-process-step-icon {
    flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.mv-process-step-body { flex: 1; min-width: 0; }
.mv-process-step-label {
    display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px;
}
.mv-process-step-num {
    font-size: 0.85rem; font-weight: 800; color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}
.mv-process-step-label h4 {
    font-size: 1.15rem; font-weight: 800; color: #fff; margin: 0;
}
.mv-process-step-body p {
    font-size: 0.92rem; color: rgba(255,255,255,0.5);
    margin: 0; line-height: 1.5;
}
.mv-process-img {
    flex: 0 0 50%; overflow: hidden;
}
.mv-process-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ===== SNS - 배경 이미지 + 오버레이 ===== */
.mv-sns {
    text-align: center; padding: 56px 0 60px;
    background: url('/images/content/building-hq.jpg') center/cover no-repeat;
    position: relative;
}
.mv-sns::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(0,0,0,0.55);
}
.mv-sns .container { position: relative; z-index: 1; }
.mv-sns-label {
    font-size: 0.8rem; color: rgba(255,255,255,0.85); font-weight: 600; margin-bottom: 18px;
}
.mv-sns-links {
    display: flex; align-items: center; justify-content: center; gap: 14px;
}
.mv-sns-link {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 1.2rem;
    transition: all 0.3s;
    background: #fff; color: #333;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.mv-sns-link:hover { transform: translateY(-3px); }
.mv-sns-b { font-weight: 900; font-size: 1.3rem; color: #222; }
.mv-sns--youtube i { color: #ff0000; }
.mv-sns--facebook i { color: #1877f2; }
.mv-sns--instagram i { color: #c13584; }

/* ===== 하단 내비 - 시안: 레드 바 ===== */
.mv-bottom-nav {
    background: var(--color-primary); padding: 14px 0;
}
.mv-bottom-nav-inner {
    display: flex; align-items: center; justify-content: center; gap: 28px;
}
.mv-bottom-nav-link {
    font-size: 0.82rem; color: rgba(255,255,255,0.9); text-decoration: none;
    font-weight: 500; transition: color 0.2s; position: relative;
}
.mv-bottom-nav-link:hover { color: #fff; }
.mv-bottom-nav-link + .mv-bottom-nav-link::before {
    content: '·'; position: absolute; left: -16px; color: rgba(255,255,255,0.4);
}

/* ===== 반응형 ===== */
@media (max-width: 1199px) {
    .mv-about-visual { width: 360px; }
    .mv-about-inner { gap: 52px; }
    .mv-process-text-inner { padding-left: 28px; }
}
@media (max-width: 991px) {
    .mv-hero-content h1 { font-size: 2rem; }
    .mv-quick-grid { gap: 14px; }
    .mv-about { padding: 64px 0; }
    .mv-about-inner { flex-direction: column; gap: 44px; text-align: center; }
    .mv-about-visual { width: 320px; margin: 0 auto; }
    .mv-about-line { margin: 20px auto 24px; }
    .mv-about-features { justify-items: center; }
    .mv-health-grid { gap: 20px; }
    .mv-oneclick-grid { grid-template-columns: repeat(2, 1fr); }
    .mv-process { flex-direction: column; }
    .mv-process-text { flex: none; padding: 0; }
    .mv-process-text-inner { max-width: 100%; margin: 0; padding: 28px 24px; }
    .mv-process-img { flex: none; height: 260px; }
}
@media (max-width: 767px) {
    .mv-hero { min-height: 480px; max-height: 680px; }
    .mv-hero-content h1 { font-size: 1.6rem; }
    .mv-hero-content .mv-hero-sub { font-size: 0.85rem; }
    .mv-hero-btn { padding: 11px 22px; font-size: 0.82rem; }
    .mv-hero-nav-wrap { display: none; }
    .mv-quick { padding: 36px 0 40px; }
    .mv-quick-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 100%; }
    .mv-quick-icon { width: 56px; height: 56px; }
    .mv-quick-icon i { font-size: 1.3rem; }
    .mv-quick-card { padding: 24px 12px 20px; }
    .mv-about-visual { width: 260px; }
    .mv-about-title { font-size: 1.5rem; }
    .mv-about-features { grid-template-columns: 1fr; text-align: left; justify-items: start; }
    .mv-health { padding: 48px 0 56px; }
    .mv-health-title { font-size: 1.4rem; }
    .mv-health-grid { grid-template-columns: 1fr; }
    .mv-oneclick { padding: 48px 0 56px; }
    .mv-oneclick-title { font-size: 1.3rem; }
    .mv-oneclick-grid { gap: 14px; }
    .mv-process-img { height: 260px; }
    .mv-bottom-nav-inner { flex-wrap: wrap; gap: 12px 20px; }
}
@media (max-width: 575px) {
    .mv-hero-content h1 { font-size: 1.35rem; }
    .mv-hero-btns { gap: 8px; }
    .mv-hero-btn { padding: 10px 18px; font-size: 0.78rem; }
    .mv-quick-title { font-size: 0.82rem; }
    .mv-quick-desc { font-size: 0.68rem; }
    .mv-about { padding: 44px 0; }
    .mv-about-visual { width: 220px; }
    .mv-process-step { gap: 10px; }
    .mv-process-step-icon { width: 32px; height: 32px; font-size: 0.8rem; }
    .mv-sns-link { width: 46px; height: 46px; font-size: 1.1rem; }
    .mv-bottom-nav-link + .mv-bottom-nav-link::before { display: none; }
}
