/* ── [공통] 최상단 유튜브 배너 영역 ── */
.top-promo {
    padding: 24px clamp(24px, 6vw, 36px) 0;
    display: flex; justify-content: center;
    opacity: 0; animation: fadeUp 0.8s ease forwards;
}
.promo-youtube {
    display: block; width: 100%; text-decoration: none; border-radius: 20px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(180, 170, 150, 0.2); transition: all 0.3s ease; background: #FFFFFF;
}
.promo-youtube:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(180, 170, 150, 0.25); }
.promo-img { width: 100%; height: auto; display: block; object-fit: cover; }

.promo-text-bar {
    padding: 16px; text-align: center; font-size: 16px; font-weight: 500;
    color: #4A4744; border-top: 1px solid rgba(0,0,0,0.03);
}
.promo-text-bar span { color: #B38653; font-weight: 700; }
.promo-text-bar .click-tag { color: #E74C3C; font-weight: 700; margin-left: 4px; }

/* ── [공통] 서비스 리스트 영역 (선명한 배경 & 텍스트 버튼) ── */
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.service-item { 
    border: 1px solid var(--border-soft); 
    border-radius: 24px; padding: 26px 20px; 
    display: flex; flex-direction: column; justify-content: flex-start; 
    text-decoration: none; min-height: 200px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.02); transition: all 0.3s ease;
}
.service-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: var(--gold-primary); }

.service-num { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.service-name { font-size: 18px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; word-break: keep-all; }
.service-desc { font-size: 14px; line-height: 1.4; flex-grow: 1; margin-bottom: 20px; }

/* 각 아이템 배경색 및 글씨색 */
.service-item:nth-child(1) { background-color: #FF4757; }
.service-item:nth-child(2) { background-color: #00B894; }
.service-item:nth-child(3) { background-color: #FDCB6E; }
.service-item:nth-child(4) { background-color: #0984E3; }

.service-item:nth-child(1) .service-name, .service-item:nth-child(1) .service-desc,
.service-item:nth-child(2) .service-name, .service-item:nth-child(2) .service-desc,
.service-item:nth-child(4) .service-name, .service-item:nth-child(4) .service-desc { color: #FFFFFF; }

.service-item:nth-child(3) .service-name { color: var(--text-main); }
.service-item:nth-child(3) .service-desc { color: var(--text-muted); }

/* 서비스 카드 내 버튼 스타일 */
.service-btn {
    margin-top: auto; width: 100%; padding: 12px;
    background-color: rgba(255, 255, 255, 0.9); border-radius: 12px;
    text-align: center; font-size: 15px; font-weight: 700;
    transition: all 0.3s ease; border: 1px solid rgba(0, 0, 0, 0.05);
}
.service-item:nth-child(1) .service-btn { color: #FF4757; }
.service-item:nth-child(2) .service-btn { color: #00B894; }
.service-item:nth-child(3) .service-btn { background-color: #FFFFFF; color: #9A7142; }
.service-item:nth-child(4) .service-btn { color: #0984E3; }

/* ── [공통] iOS 설치 유도 팝업 디자인 ── */
.ios-prompt {
    position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%);
    width: calc(100% - 40px); max-width: 400px;
    background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(12px);
    border-radius: 22px; padding: 18px 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); z-index: 10000;
    display: none; border: 1px solid var(--gold-light);
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ios-prompt-content { display: flex; align-items: center; gap: 14px; }
.ios-icon { width: 48px; height: 48px; border-radius: 12px; }
.ios-text { flex: 1; font-size: 14px; line-height: 1.5; color: var(--text-main); }
.ios-text strong { color: var(--gold-primary); font-weight: 700; }
.inline-icon { width: 18px; vertical-align: middle; margin: 0 2px; }
.ios-close { background: none; border: none; font-size: 20px; color: var(--text-light); cursor: pointer; }

/* 팝업 하단 가이드 화살표 */
.ios-prompt::after {
    content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
    border-width: 10px 10px 0 10px; border-style: solid;
    border-color: rgba(255, 255, 255, 0.96) transparent transparent transparent;
}

/* ── [공통] 실시간 후기 및 푸터 영역 ── */
.review-showcase { padding: 40px 0 60px; background: #FFFFFF; border-top: 1px solid var(--border-soft); opacity: 0; animation: fadeUp 0.8s ease forwards 1s; }
.review-showcase-title { font-family: 'Noto Serif KR', serif; font-size: 24px; font-weight: 700; padding: 0 clamp(24px, 6vw, 36px); }

.review-scroll-container { 
    display: flex; gap: 16px; padding: 20px clamp(24px, 6vw, 36px); overflow-x: auto; 
    scroll-snap-type: x mandatory; scrollbar-width: none;
}
.review-scroll-container::-webkit-scrollbar { display: none; }

.review-card { 
    flex: 0 0 calc(88% - 16px); max-width: 320px; scroll-snap-align: start; 
    background: var(--bg-main); border-radius: 20px; padding: 24px; 
    border: 1px solid var(--border-soft); display: flex; flex-direction: column; gap: 12px;
}
.review-stars { color: var(--gold-primary); font-size: 18px; }
.review-text { 
    font-size: 16px; line-height: 1.6; font-weight: 500; 
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

.footer-area { padding: 40px 24px 60px; text-align: center; background: #FFFFFF; }
.footer-brand { font-size: 18px; color: var(--gold-primary); font-weight: 700; margin-bottom: 8px; }
.footer-copy { font-size: 16px; color: var(--text-muted); line-height: 1.8; }

/* ── 애니메이션 정의 ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInUp { from { transform: translate(-50%, 100%); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }
