/* ============================================
   실행전쟁 세일즈 랜딩페이지 스타일
   - 차분한 전문 컨설팅 톤
   - 딥 네이비 + 화이트 클린 디자인
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Deep Navy Theme - 전문가/컨설턴트 톤 */
    --primary: #1F3A5F;
    --primary-light: #3B6EA8;
    --primary-dark: #152A45;

    /* Background */
    --bg-main: #F7F9FC;
    --bg-card: #FFFFFF;

    /* Border */
    --border: #E5EAF2;
    --border-hover: #C7D2E1;

    /* Text Colors */
    --text-dark: #111827;
    --text-gray: #4B5563;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;

    /* Neutral */
    --white: #FFFFFF;

    /* Urgent/Warning - 긴급 강조용 */
    --urgent-red: #DC2626;
    --urgent-red-hover: #B91C1C;

    /* Legacy aliases for compatibility */
    --primary-blue: var(--primary);
    --sub-blue: var(--primary-light);
    --light-blue-bg: var(--bg-main);
    --gray-light: var(--border);
    --gray-border: var(--border);

    --font-main: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;

    --section-padding: 140px 24px;
    --section-padding-mobile: 100px 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.3;
}

.highlight {
    color: var(--primary-blue);
}

strong {
    font-weight: 700;
}

/* Sections Base */
.section {
    padding: var(--section-padding);
    /* 기본적으로 보이게 설정 (JS 오류 시에도 콘텐츠 표시) */
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* JS가 로드되면 애니메이션 준비 상태로 전환 */
.js-loaded .section:not(.visible) {
    opacity: 0;
    transform: translateY(30px);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 6vw, 42px);
    margin-bottom: 48px;
    color: var(--text-dark);
}

/* ============================================
   Hero Section - 차분한 전문가 톤
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 80px 24px;
    position: relative;
}

.hero-content {
    max-width: 640px;
}

.hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 24px;
    border-radius: 4px;
    margin-bottom: 36px;
    animation: fadeInDown 0.8s ease;
}

.hero-headline {
    font-size: clamp(32px, 8vw, 56px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-headline .highlight {
    color: #A8C5E2;
    position: relative;
}

.hero-headline .highlight::after {
    display: none;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

/* CTA Buttons - 차분한 스타일 */
.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 4px;
    transition: all 0.2s ease;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.cta-button:hover {
    background: var(--bg-main);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(31, 58, 95, 0.15);
}

/* 마감 문구 스타일 */
.cta-closed {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding: 20px 32px;
    border-radius: 8px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.6s backwards;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-large {
    font-size: 16px;
    padding: 18px 48px;
}

.cta-final {
    font-size: 17px;
    padding: 20px 56px;
    animation: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--sub-blue);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}

/* ============================================
   Video Gallery Section - 통합 영상 섹션
   ============================================ */
.video-gallery {
    background: var(--bg-main);
    padding: 80px 0;
}

.video-gallery-desc {
    text-align: center;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.video-gallery-desc strong {
    display: block;
    margin-top: 8px;
    font-size: 17px;
    color: var(--primary);
    font-weight: 600;
}

.video-carousel {
    position: relative;
    overflow: hidden;
}

.video-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transition: transform 0.3s ease;
}

.video-card {
    display: flex;
    flex-direction: column;
}

.video-card-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
}

.video-card-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.video-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-dots .dot.active {
    background: var(--primary);
}

/* ============================================
   Problem Section - 깔끔한 카드 스타일
   ============================================ */
.problem {
    background: var(--bg-main);
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.problem-item {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 8px;
    position: relative;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease;
}

.problem-item:hover {
    border-color: var(--border-hover);
}

.problem-icon {
    font-size: 40px;
    color: var(--primary);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    opacity: 0.2;
}

.problem-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.problem-item strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-top: 6px;
    font-size: 17px;
}

/* ============================================
   Solution Section - 차분한 다크 톤
   ============================================ */
.solution {
    background: var(--primary);
    color: var(--white);
}

.solution .section-tag {
    color: rgba(255, 255, 255, 0.5);
}

.solution .section-title {
    color: var(--white);
}

.solution .section-title .highlight {
    color: #A8C5E2;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    padding: 36px 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: border-color 0.2s ease;
    background: transparent;
}

.solution-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

.solution-number {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.solution-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
}

.solution-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.solution-card strong {
    color: var(--white);
}

/* ============================================
   Philosophy Section - 선언문 스타일
   ============================================ */
.philosophy {
    background: var(--bg-main);
    padding: 160px 24px;
}

.philosophy-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-line {
    font-size: 19px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.philosophy-emphasis {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 0;
}

.philosophy-divider {
    width: 40px;
    height: 1px;
    background: var(--border);
    margin: 48px auto;
}

.philosophy-final {
    font-size: 21px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0;
}

/* ============================================
   Results Section - 클린 카드 스타일
   ============================================ */
.results {
    background: var(--white);
}

.results-note-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 20px 24px;
    margin-bottom: 36px;
}

.results-note-label {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary);
    background: var(--white);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 3px;
    margin-top: 2px;
}

.results-note-box p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.results-note-box strong {
    color: var(--text-dark);
    font-weight: 600;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.story-card {
    background: var(--white);
    padding: 28px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease;
}

.story-card:hover {
    border-color: var(--border-hover);
}

.story-card-featured {
    grid-column: 1 / -1;
    background: var(--white);
    border-color: var(--border);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.story-location {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid var(--primary);
}

.story-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.story-content {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.story-content strong {
    color: var(--primary);
    font-weight: 600;
}

.results-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 40px;
}

.results-disclaimer {
    margin-top: 48px;
    padding: 20px;
    background: var(--bg-main);
    border-radius: 6px;
    text-align: center;
}

.results-disclaimer p {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ============================================
   Profile Section - 클린 프로페셔널 스타일
   ============================================ */
.profile {
    background: var(--bg-main);
}

.profile-subtitle {
    font-size: 0.5em;
    font-weight: 500;
    color: var(--text-light);
    display: block;
    margin-top: 8px;
}

.profile-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: start;
}

.profile-image {
    position: relative;
}

.profile-image img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.profile-text {
    padding-top: 4px;
}

.profile-intro {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 28px;
}

.profile-intro strong {
    color: var(--primary);
}

.profile-career {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
}

.profile-career li {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    padding-left: 16px;
    position: relative;
    margin-bottom: 6px;
}

.profile-career li:last-child {
    margin-bottom: 0;
}

.profile-career li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.profile-career li strong {
    color: var(--primary);
    font-weight: 600;
}

.profile-experience {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 28px;
}

.profile-experience strong {
    color: var(--primary);
    font-weight: 600;
}

.profile-now {
    margin-bottom: 28px;
    padding-left: 20px;
    border-left: 2px solid var(--primary);
}

.profile-now p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

.profile-now strong {
    color: var(--text-dark);
    font-weight: 600;
}

.profile-closing {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
}

.profile-closing strong {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   Package Section - 클린 실행 리스트
   ============================================ */
.package {
    background: var(--white);
}

.package-intro {
    text-align: center;
    margin-bottom: 48px;
    padding: 36px 32px;
    background: var(--bg-main);
    border-radius: 6px;
    border: 1px solid var(--border);
}

.package-intro p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

.package-intro strong {
    color: var(--primary);
    font-size: 20px;
    font-weight: 600;
}

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

.execution-item {
    background: var(--bg-main);
    padding: 28px;
    border-radius: 6px;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease;
}

.execution-item:hover {
    border-color: var(--border-hover);
}

.execution-highlight {
    border-left: 3px solid var(--primary);
    background: var(--bg-main);
}

.execution-bonus {
    border: 1px solid var(--primary);
    background: var(--bg-main);
}

.execution-badge {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 3px;
    border: 1px solid var(--primary);
    margin-bottom: 12px;
}

.execution-badge.bonus {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.execution-item h3 {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.5;
    font-weight: 600;
}

.execution-item h3 strong {
    color: var(--primary);
}

.execution-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.execution-item li {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    padding-left: 16px;
    position: relative;
    margin-bottom: 6px;
}

.execution-item li:last-child {
    margin-bottom: 0;
}

.execution-item li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.execution-item li strong {
    color: var(--primary);
    font-weight: 600;
}

/* Execution Highlight (다크 카드) - 가독성 최적화 */
.execution-item.execution-highlight {
    background: #2D4A6F; /* 10% 더 밝은 네이비 */
    border: none;
    color: var(--white);
}

.execution-item.execution-highlight h3 {
    color: #FFFFFF;
    font-size: 18px;
}

.execution-item.execution-highlight ul {
    margin-top: 4px;
}

.execution-item.execution-highlight li {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.8;
}

.execution-item.execution-highlight li::before {
    color: rgba(255, 255, 255, 0.7);
}

.execution-item.execution-highlight li strong {
    color: #FFFFFF;
}

.execution-badge.highlight {
    background: rgba(255, 255, 255, 0.18);
    color: #FFFFFF;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.execution-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 14px;
}

.execution-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    margin-bottom: 16px;
}

.execution-desc strong {
    color: #FFFFFF;
    font-weight: 600;
}

.execution-tagline {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    display: inline-block;
}

.execution-value {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: var(--white);
    padding: 6px 14px;
    border-radius: 3px;
    margin-bottom: 14px;
}

/* ============================================
   Target Fit Section - 타겟 고객 & 기대치 정렬
   ============================================ */
.target-fit {
    background: var(--bg-main);
}

.target-intro {
    max-width: 560px;
    margin: 0 auto 48px;
    text-align: center;
}

.target-intro p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.target-intro p:last-child {
    margin-bottom: 0;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.target-card {
    background: var(--white);
    border-radius: 8px;
    padding: 32px 28px;
    border: 1px solid var(--border);
}

.target-good {
    border-left: 3px solid var(--primary);
}

.target-mismatch {
    border-left: 3px solid var(--border-hover);
}

.target-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.target-good .target-label {
    color: var(--primary);
}

.target-mismatch .target-label {
    color: var(--text-light);
}

.target-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.target-list li {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.target-list li:last-child {
    margin-bottom: 0;
}

.target-good .target-list li::before {
    content: '○';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 10px;
    top: 4px;
}

.target-mismatch .target-list li::before {
    content: '–';
    position: absolute;
    left: 2px;
    color: var(--text-muted);
    font-size: 14px;
}

.target-closing {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.target-closing p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
}

.target-closing strong {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   Process Section - 클린 타임라인
   ============================================ */
.process {
    background: var(--bg-main);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: var(--border);
}

.process-item {
    text-align: center;
    position: relative;
}

.process-week {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 3px;
    border: 1px solid var(--primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.process-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.process-item p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   FAQ Section - 클린 스타일
   ============================================ */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.faq-question {
    font-size: 16px;
    margin-bottom: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-answer {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-answer strong {
    color: var(--primary);
}

/* ============================================
   Pricing Section - 가격 및 모집
   ============================================ */
.pricing {
    background: var(--primary);
    color: var(--white);
}

.pricing .section-tag {
    color: rgba(255, 255, 255, 0.5);
}

.pricing .section-title {
    color: var(--white);
}

.pricing-main {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

.pricing-highlight {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 40px 32px;
    margin-bottom: 32px;
}

.pricing-amount {
    margin-bottom: 24px;
}

.price-number {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
}

.price-unit {
    font-size: 28px;
    font-weight: 600;
    margin-left: 4px;
}

.price-vat {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

.pricing-meta {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.pricing-meta span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-meta strong {
    color: var(--white);
    font-weight: 600;
}

.pricing-description {
    text-align: center;
}

.pricing-description p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 16px;
}

.pricing-description strong {
    color: var(--white);
    font-weight: 600;
}

.pricing-reason {
    margin-top: 24px;
    font-size: 17px !important;
    color: var(--white) !important;
}

.pricing-first-batch {
    max-width: 480px;
    margin: 0 auto 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
}

.batch-badge {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 3px;
    margin-bottom: 20px;
}

.batch-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.batch-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    display: inline-block;
}

.batch-list li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.batch-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
}

.batch-note {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.batch-note strong {
    color: var(--white);
}

.batch-warning {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.pricing-benefits {
    max-width: 480px;
    margin: 0 auto 48px;
    background: var(--white);
    border-radius: 8px;
    padding: 32px;
}

.benefits-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.benefits-list li {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.pricing-cta {
    text-align: center;
}

.cta-pricing {
    background: var(--white);
    color: var(--primary);
    font-size: 18px;
    padding: 20px 56px;
    animation: none;
}

.cta-pricing:hover {
    background: var(--bg-main);
}

.pricing-urgency {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-top: 16px;
    letter-spacing: 0.5px;
}

/* ============================================
   Final CTA Section - 차분한 스타일
   ============================================ */
.final-cta {
    background: var(--primary);
    color: var(--white);
    padding: 100px 24px;
}

.final-cta-box {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: transparent;
}

.final-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 20px;
    border-radius: 3px;
    margin-bottom: 28px;
}

.final-headline {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 20px;
    font-weight: 600;
}

.final-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    line-height: 1.7;
}

.final-sub strong {
    color: var(--white);
}

.final-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.final-benefits span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.final-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 20px;
}

.urgency {
    color: var(--white);
    font-weight: 600;
}

/* ============================================
   Footer - 클린 스타일
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.4);
    padding: 36px 24px;
    text-align: center;
}

.footer p {
    font-size: 12px;
}

.footer-links {
    margin-top: 16px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--sub-blue);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(30, 94, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(30, 94, 255, 0);
    }
}

/* ============================================
   Mobile Responsive (70% 모바일 기준)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px 20px;
    }

    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 36px;
    }

    /* Hero Mobile */
    .hero {
        padding: 40px 20px;
        min-height: 100svh;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-sub {
        font-size: 16px;
    }

    /* Video Gallery Mobile - Carousel */
    .video-gallery {
        padding: 60px 0;
    }

    .video-gallery-desc {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .video-carousel {
        padding: 0 20px;
    }

    .video-track {
        display: flex;
        grid-template-columns: none;
        gap: 0;
    }

    .video-card {
        min-width: 100%;
        flex-shrink: 0;
        padding: 0 8px;
        box-sizing: border-box;
    }

    .video-card-wrapper {
        aspect-ratio: 9 / 16;
        border-radius: 12px;
        max-height: 420px;
    }

    .video-dots {
        display: flex;
    }

    .video-dots .dot {
        width: 10px;
        height: 10px;
    }

    .cta-button {
        padding: 18px 36px;
        font-size: 16px;
        width: 100%;
        max-width: 320px;
        min-height: 56px;
    }

    .cta-large {
        padding: 20px 40px;
        min-height: 60px;
    }

    .cta-final {
        padding: 22px 48px;
        font-size: 18px;
        min-height: 64px;
    }

    /* Problem Mobile */
    .problem-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-item {
        padding: 28px 24px;
    }

    .problem-icon {
        font-size: 48px;
        margin-bottom: 10px;
    }

    .problem-item p {
        font-size: 17px;
        line-height: 1.6;
    }

    .problem-item strong {
        font-size: 18px;
        margin-top: 6px;
    }

    /* Solution Mobile */
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .solution-card {
        padding: 28px 24px;
    }

    /* Philosophy Mobile */
    .philosophy {
        padding: 100px 20px;
    }

    .philosophy-line {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .philosophy-emphasis {
        font-size: 19px;
        margin-top: 16px;
    }

    .philosophy-divider {
        margin: 36px auto;
    }

    .philosophy-final {
        font-size: 18px;
    }

    /* Results Mobile (Story Style) */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .story-card {
        padding: 28px 24px;
    }

    .story-card-featured {
        grid-column: auto;
    }

    .story-header {
        margin-bottom: 14px;
    }

    .story-location {
        font-size: 11px;
        padding: 3px 8px;
    }

    .story-name {
        font-size: 16px;
    }

    .story-content {
        font-size: 15px;
        line-height: 1.75;
    }

    .results-note-box {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        margin-bottom: 24px;
    }

    .results-note-box p {
        font-size: 14px;
        line-height: 1.75;
    }

    /* Profile Mobile */
    .profile-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .profile-image {
        max-width: 280px;
        margin: 0 auto;
    }

    .profile-intro {
        font-size: 18px;
        text-align: center;
        margin-bottom: 24px;
    }

    .profile-career {
        padding: 20px;
        margin-bottom: 24px;
    }

    .profile-career li {
        font-size: 14px;
    }

    .profile-now {
        margin-bottom: 24px;
    }

    .profile-now p {
        font-size: 16px;
    }

    .profile-closing {
        font-size: 17px;
        text-align: center;
    }

    /* Package Mobile (Execution Style) */
    .package-intro {
        padding: 28px 24px;
        margin-bottom: 32px;
    }

    .package-intro p {
        font-size: 17px;
    }

    .package-intro strong {
        font-size: 20px;
    }

    .execution-list {
        gap: 16px;
    }

    .execution-item {
        padding: 24px 20px;
    }

    .execution-item h3 {
        font-size: 17px;
    }

    .execution-item li {
        font-size: 14px;
    }

    /* 다크 카드 모바일 가독성 강화 */
    .execution-item.execution-highlight h3 {
        font-size: 17px;
    }

    .execution-item.execution-highlight li {
        font-size: 16px;
        line-height: 1.8;
    }

    .execution-subtitle {
        font-size: 13px;
    }

    .execution-desc {
        font-size: 15px;
    }

    .execution-tagline {
        font-size: 14px;
        padding: 10px 14px;
    }

    .execution-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .execution-value {
        font-size: 13px;
        padding: 6px 14px;
    }

    /* Process Mobile */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-item {
        text-align: left;
        padding-left: 24px;
        border-left: 3px solid var(--primary-blue);
    }

    .process-week {
        margin-bottom: 16px;
    }

    /* Target Fit Mobile */
    .target-intro p {
        font-size: 16px;
    }

    .target-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .target-card {
        padding: 28px 24px;
    }

    .target-list li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .target-closing {
        padding: 28px 24px;
    }

    .target-closing p {
        font-size: 16px;
    }

    /* FAQ Mobile */
    .faq-item {
        padding: 24px 0;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 15px;
    }

    /* Pricing Mobile */
    .pricing-highlight {
        padding: 32px 24px;
    }

    .price-number {
        font-size: 56px;
    }

    .price-unit {
        font-size: 22px;
    }

    .pricing-meta {
        flex-direction: column;
        gap: 8px;
    }

    .pricing-description p {
        font-size: 15px;
    }

    .pricing-first-batch {
        padding: 28px 24px;
    }

    .batch-title {
        font-size: 17px;
    }

    .batch-list li {
        font-size: 14px;
    }

    .pricing-benefits {
        padding: 28px 20px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .benefits-list li {
        font-size: 14px;
    }

    .cta-pricing {
        font-size: 17px;
        padding: 18px 48px;
        width: 100%;
        max-width: 320px;
    }

    /* Final CTA Mobile */
    .final-cta {
        padding: 60px 20px;
    }

    .final-cta-box {
        padding: 40px 24px;
    }

    .final-headline {
        font-size: 28px;
    }

    .final-benefits {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 32px;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        padding: 28px 24px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .solution-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .solution-card {
        padding: 32px 20px;
    }

    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .process-timeline::before {
        display: none;
    }
}

/* ============================================
   8주 프로세스 섹션 스타일
   ============================================ */

.process-phase {
    margin-bottom: 48px;
}

.process-phase:last-child {
    margin-bottom: 0;
}

.phase-header {
    text-align: center;
    margin-bottom: 40px;
}

.phase-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.phase-badge.badge-light {
    background: var(--bg-main);
    color: var(--primary);
    border: 1px solid var(--border);
}

.phase-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.phase-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Phase Divider */
.phase-divider {
    background: var(--bg-main);
    border-radius: 12px;
    padding: 32px 24px;
    margin: 48px 0;
    text-align: center;
    border-left: 4px solid var(--primary);
}

.phase-divider-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.phase-divider-text strong {
    color: var(--primary);
}

/* Autonomous Phase Styling */
.phase-autonomous .process-timeline {
    opacity: 0.9;
}

.phase-autonomous .process-item {
    background: var(--bg-main);
    border: 1px solid var(--border);
}

.phase-autonomous .process-week {
    background: var(--white);
    color: var(--primary-light);
}

.phase-note {
    background: var(--white);
    border: 1px dashed var(--border);
    border-radius: 8px;
    padding: 20px;
    margin-top: 24px;
    text-align: center;
}

.phase-note p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   참여 가능성 진단 테스트 스타일
   ============================================ */

.diagnosis-test {
    background: var(--bg-main);
    border-radius: 16px;
    padding: 40px 32px;
    margin: 48px 0;
}

.diagnosis-header {
    text-align: center;
    margin-bottom: 32px;
}

.diagnosis-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.diagnosis-subtitle {
    font-size: 14px;
    color: var(--text-light);
}

.diagnosis-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 32px;
}

.diagnosis-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.diagnosis-item:hover {
    border-color: var(--primary-light);
}

.diagnosis-checkbox {
    display: none;
}

.diagnosis-checkmark {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-radius: 6px;
    position: relative;
    transition: all 0.2s ease;
}

.diagnosis-checkbox:checked + .diagnosis-checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.diagnosis-checkbox:checked + .diagnosis-checkmark::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 8px;
    width: 5px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.diagnosis-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.5;
}

.diagnosis-result {
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    max-width: 500px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.diagnosis-result.show {
    opacity: 1;
    transform: translateY(0);
}

.diagnosis-count {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.diagnosis-count span {
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
}

.diagnosis-message .result-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.diagnosis-message .result-subtitle {
    font-size: 15px;
    color: var(--text-gray);
}

.diagnosis-result.result-good {
    border-color: var(--primary-light);
    background: linear-gradient(135deg, rgba(31, 58, 95, 0.03), rgba(59, 110, 168, 0.05));
}

.diagnosis-result.result-good .result-title {
    color: var(--primary);
}

.diagnosis-result.result-wait {
    border-color: var(--border);
    background: var(--white);
}

.diagnosis-result.result-wait .result-title {
    color: var(--text-gray);
}

/* 결과 보러가기 버튼 */
.diagnosis-scroll-btn {
    display: block;
    margin: 24px auto 0;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.diagnosis-scroll-btn:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

/* ============================================
   신청 현황 카운터 스타일
   ============================================ */

.application-status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 40px;
    margin: 32px auto;
    max-width: 400px;
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.status-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.status-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.status-value span {
    font-size: 24px;
    color: var(--primary);
}

.status-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* 버튼 비활성화 상태 */
.btn-disabled {
    background: rgba(255, 255, 255, 0.3) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    cursor: not-allowed !important;
}

.btn-disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

.pricing-urgency.closed {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   결정 트리거 섹션
   ============================================ */
.decision-trigger {
    background: linear-gradient(180deg, #0A1929 0%, #0F2747 100%);
    border-radius: 16px;
    padding: 48px 32px;
    margin: 48px 0 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.trigger-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.trigger-text:last-child {
    margin-bottom: 0;
}

.trigger-text strong {
    color: #A8C5E2;
    font-weight: 600;
}

@media (max-width: 768px) {
    .decision-trigger {
        padding: 36px 24px;
        margin: 36px 0 32px;
    }

    .trigger-text {
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 20px;
    }
}

/* 진단 테스트 모바일 반응형 */
@media (max-width: 768px) {
    .diagnosis-test {
        padding: 32px 20px;
        margin: 32px 0;
    }

    .diagnosis-title {
        font-size: 20px;
    }

    .diagnosis-item {
        padding: 14px 16px;
        gap: 12px;
    }

    .diagnosis-checkmark {
        width: 22px;
        height: 22px;
    }

    .diagnosis-text {
        font-size: 14px;
    }

    .diagnosis-result {
        padding: 20px 16px;
    }

    .diagnosis-message .result-title {
        font-size: 16px;
    }

    .diagnosis-message .result-subtitle {
        font-size: 14px;
    }

    /* 8주 프로세스 모바일 */
    .phase-header {
        margin-bottom: 28px;
    }

    .phase-title {
        font-size: 20px;
    }

    .phase-desc {
        font-size: 13px;
    }

    .phase-divider {
        padding: 24px 20px;
        margin: 32px 0;
    }

    .phase-divider-text {
        font-size: 14px;
    }

    .phase-note {
        padding: 16px;
    }

    .phase-note p {
        font-size: 13px;
    }

    /* 신청 현황 모바일 */
    .application-status {
        gap: 24px;
        padding: 20px 24px;
        max-width: 320px;
    }

    .status-value {
        font-size: 16px;
    }

    .status-value span {
        font-size: 20px;
    }

    .status-divider {
        height: 32px;
    }

    .diagnosis-scroll-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* ============================================
   ✅ Diagnosis checklist layout fix
   ============================================ */
.diagnosis, .diagnosis-section, #diagnosis {
    max-width: 960px;
    margin: 0 auto;
}

.diagnosis-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
}

/* 태블릿 이상 2열 */
@media (min-width: 768px) {
    .diagnosis-list {
        grid-template-columns: 1fr 1fr;
        gap: 12px 16px;
    }
}

.diagnosis-item,
.diagnosis-list label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    line-height: 1.55;
}

.diagnosis-list input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: 0 0 auto;
}

/* ============================================
   ✅ Process timeline layout fix
   ============================================ */
.process, .process-section, #process {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
}

/* 데스크탑 4열 */
@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }
}

/* 카드 */
.process-card {
    border: 1px solid rgba(17,24,39,0.12);
    border-radius: 16px;
    padding: 18px;
    background: #fff;
}

/* "WEEK 1" 같은 버튼/배지 */
.week-badge, .week-btn, .week-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(17,24,39,0.18);
    background: #fff;
    white-space: nowrap;
}

/* 혹시 absolute로 박혀있으면 강제 해제 */
.process * {
    position: static;
}

/* ============================================
   ✅ 진단 섹션 대비 개선 (프리미엄 SaaS 톤)
   ============================================ */

/* 진단 테스트 섹션 - 딥 네이비 그라데이션 배경 */
.diagnosis-test {
    background: linear-gradient(180deg, #0F2747 0%, #132F54 100%);
    border-radius: 16px;
    padding: 48px 32px;
    margin: 48px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* 진단 헤더 텍스트 */
.diagnosis-header {
    text-align: center;
    margin-bottom: 36px;
}

.diagnosis-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.diagnosis-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
}

/* 체크박스 항목 카드 */
.diagnosis-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 640px;
    margin: 0 auto 36px;
}

.diagnosis-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.diagnosis-item:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.24);
}

/* 체크박스 시각적 숨김 (기능 유지) */
.diagnosis-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* 커스텀 체크마크 */
.diagnosis-checkmark {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 6px;
    position: relative;
    transition: all 0.2s ease;
    background: transparent;
}

/* 체크 시 */
.diagnosis-checkbox:checked + .diagnosis-checkmark {
    background: #3B6EA8;
    border-color: #3B6EA8;
}

.diagnosis-checkbox:checked + .diagnosis-checkmark::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 8px;
    width: 5px;
    height: 10px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* 체크박스 텍스트 */
.diagnosis-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
}

/* 결과 박스 */
.diagnosis-result {
    text-align: center;
    padding: 28px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    max-width: 520px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.diagnosis-result.show {
    opacity: 1;
    transform: translateY(0);
}

.diagnosis-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
}

.diagnosis-count span {
    font-weight: 700;
    color: #A8C5E2;
    font-size: 20px;
}

.diagnosis-message .result-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.diagnosis-message .result-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
}

/* 좋은 결과 */
.diagnosis-result.result-good {
    border-color: rgba(59, 110, 168, 0.5);
    background: rgba(59, 110, 168, 0.15);
}

.diagnosis-result.result-good .result-title {
    color: #A8C5E2;
}

/* 대기/불가 결과 */
.diagnosis-result.result-wait {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.diagnosis-result.result-wait .result-title {
    color: rgba(255, 255, 255, 0.75);
}

/* 조건부 가능 결과 */
.diagnosis-result.result-conditional {
    border-color: rgba(255, 193, 7, 0.4);
    background: rgba(255, 193, 7, 0.1);
}

.diagnosis-result.result-conditional .result-title {
    color: #FFD54F;
}

/* 결과 보러가기 버튼 */
.diagnosis-scroll-btn {
    display: block;
    margin: 28px auto 0;
    padding: 16px 36px;
    background: #3B6EA8;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.diagnosis-scroll-btn:hover {
    background: #4A7DB8;
    transform: translateY(-1px);
}

/* 진단 테스트 모바일 */
@media (max-width: 768px) {
    .diagnosis-test {
        padding: 36px 20px;
        margin: 32px 0;
        border-radius: 12px;
    }

    .diagnosis-title {
        font-size: 20px;
    }

    .diagnosis-subtitle {
        font-size: 14px;
    }

    .diagnosis-item {
        padding: 16px 16px;
        gap: 12px;
    }

    .diagnosis-checkmark {
        width: 22px;
        height: 22px;
    }

    .diagnosis-text {
        font-size: 14px;
    }

    .diagnosis-result {
        padding: 24px 20px;
    }

    .diagnosis-message .result-title {
        font-size: 18px;
    }

    .diagnosis-message .result-subtitle {
        font-size: 14px;
    }

    .diagnosis-scroll-btn {
        padding: 14px 32px;
        font-size: 14px;
    }
}

/* ============================================
   토스트 알림 스타일
   ============================================ */
.toast-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.toast-container.show {
    opacity: 1;
    visibility: visible;
}

.toast {
    background: linear-gradient(180deg, #0F2747 0%, #132F54 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 32px;
    max-width: 400px;
    margin: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.toast-container.show .toast {
    transform: translateY(0);
}

.toast-content {
    text-align: center;
}

.toast-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.toast-message {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 24px;
}

.toast-close {
    display: inline-block;
    background: #3B6EA8;
    color: #FFFFFF;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toast-close:hover {
    background: #4A7DB8;
    transform: translateY(-1px);
}

/* 토스트 모바일 */
@media (max-width: 768px) {
    .toast {
        padding: 28px 24px;
        margin: 16px;
    }

    .toast-title {
        font-size: 17px;
    }

    .toast-message {
        font-size: 14px;
    }

    .toast-close {
        padding: 12px 36px;
        font-size: 14px;
    }
}

/* =========================
   MOBILE READABILITY + NAVY BOX FIX
   모바일 가독성 + 네이비 박스 대비 개선
========================= */

/* 1) 기본 가독성(모바일에서 줄바꿈/행간/단어깨짐 개선) */
:root{
  --text-main:#0f172a;
  --text-sub:#334155;

  --navy-bg:#1F3556;       /* 추천 네이비 */
  --navy-title:#FFFFFF;    /* 제목은 무조건 흰색 */
  --navy-body:#E6EBF2;     /* 본문은 밝은 회백 */
  --navy-accent:#9EC3FF;   /* 포인트 */
}

body{
  color:var(--text-main);
  line-height:1.7;
  word-break:keep-all;          /* 한글 단어 중간 깨짐 방지 */
  overflow-wrap:break-word;     /* 너무 긴 영문/URL만 줄바꿈 */
}

p, li{
  line-height:1.75;
}

/* 모바일에서 문단 폭/줄 길이 최적화 */
.section{
  max-width:720px;
  margin:0 auto;
  padding:24px 16px;
}

/* 2) '줄바꿈이 안 예쁜' 문장을 모바일에서 자동으로 보기 좋게 */
.mobile-copy{
  font-size:16px;
  color:var(--text-sub);
  letter-spacing:-0.2px;
}

@media (max-width: 480px){
  .mobile-copy{
    font-size:16px;
    line-height:1.9;           /* 모바일은 행간 더 넉넉하게 */
  }

  /* 문단 사이 여백 */
  .mobile-copy p{
    margin:12px 0;
  }

  /* 강조 문장(한 줄씩 눈에 박히게) */
  .mobile-copy .em{
    display:block;
    font-weight:700;
    color:var(--text-main);
    margin-top:6px;
  }
}

/* 3) 네이비 박스(가독성/대비 해결) */
.navy-card{
  background:var(--navy-bg);
  color:var(--navy-body);
  border-radius:16px;
  padding:20px 18px;
  box-shadow:0 8px 24px rgba(15, 23, 42, 0.10);
}

.navy-card .badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.14);
  color:var(--navy-title);
  font-size:13px;
  font-weight:700;
  margin-bottom:10px;
}

.navy-card h3{
  color:var(--navy-title);
  font-size:20px;
  line-height:1.25;
  margin:6px 0 12px;
  letter-spacing:-0.3px;
}

.navy-card ul{
  margin:0;
  padding-left:18px;
}

.navy-card li{
  color:var(--navy-body);
  margin:8px 0;
}

.navy-card .accent{
  color:var(--navy-accent);
  font-weight:800;
}

/* 4) 화살표/체크 라인(모바일에서 더 읽기 좋게) */
.flow-line{
  font-weight:800;
  letter-spacing:-0.3px;
}

.flow-line .arrow{
  opacity:0.9;
}

.checkline{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,0.18);
  color:var(--navy-title);
  font-weight:900;
}

@media (max-width: 480px){
  .navy-card{
    padding:18px 16px;
  }
  .navy-card h3{
    font-size:18px;
  }
}

/* =========================
   후기 이미지 갤러리 섹션
========================= */
.review-gallery {
  margin-top: 48px;
}

.review-gallery-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: center;
}

.review-gallery-subtitle {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 32px;
}

.review-card-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.review-card:hover {
  border-color: var(--border-hover);
}

.review-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-main);
}

.review-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-card-caption {
  padding: 20px;
}

.review-card-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  border: 1px solid var(--primary);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.review-card-text {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.75;
  word-break: keep-all;
}

.review-card-text strong {
  color: var(--primary);
  font-weight: 600;
}

/* 모바일 최적화 */
@media (max-width: 768px) {
  .review-gallery {
    margin-top: 40px;
  }

  .review-gallery-title {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .review-gallery-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .review-card-list {
    gap: 20px;
  }

  .review-card {
    border-radius: 12px;
  }

  .review-card-caption {
    padding: 18px 16px;
  }

  .review-card-text {
    font-size: 14px;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .review-card-caption {
    padding: 16px 14px;
  }

  .review-card-label {
    font-size: 10px;
    padding: 3px 8px;
  }

  .review-card-text {
    font-size: 14px;
    line-height: 1.85;
  }
}

/* =========================
   이미지 확대 모달
========================= */
.review-card-image img.zoomable {
  cursor: zoom-in;
}

/* 모달 */
.img-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.img-modal.is-open {
  display: block;
}

.img-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
}

.img-modal__content {
  position: absolute;
  inset: 16px;
  display: grid;
  place-items: center;
  gap: 12px;
}

#imgModalImg {
  max-width: 100%;
  max-height: 100%;
  border-radius: 14px;
  background: white;
}

.img-modal__close {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.img-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   후기 이미지 버튼 스타일
   ============================================ */
.review-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.review-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.story-card .review-btn {
    margin-top: 16px;
}

/* ============================================
   Reason Block - 후기 섹션 설명 블록
   ============================================ */
.reason-block {
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 16px;
    padding: 20px 18px;
    margin: 24px 0;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    background: rgba(15, 23, 42, 0.02);
}

.reason-block p {
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-dark);
    opacity: 0.92;
    word-break: keep-all;
}

.reason-block p + p {
    margin-top: 12px;
}

.reason-block b {
    font-weight: 800;
    color: var(--primary);
}

.reason-foot {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.10);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.reason-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primary);
    margin-top: 8px;
    flex: 0 0 auto;
}

.reason-foot p {
    margin: 0;
}

.review-sub {
    margin: 20px 0 0;
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
}

@media (max-width: 480px) {
    .reason-block {
        padding: 18px 16px;
    }

    .reason-block p {
        font-size: 14px;
        line-height: 1.95;
    }

    .review-sub {
        font-size: 12px;
    }
}

/* ============================================
   5-8주차 확장 & 고도화 섹션 스타일
   ============================================ */

.phase-expansion {
    margin-top: 48px;
}

.expansion-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    padding: 32px 24px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.expansion-intro p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.85;
    margin: 0;
}

.expansion-intro strong {
    color: var(--primary);
    font-weight: 700;
}

/* 주차별 타임라인 */
.expansion-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
}

.expansion-week {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.expansion-week:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 20px rgba(31, 58, 95, 0.08);
}

.expansion-week-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.expansion-week-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 4px;
}

.expansion-week-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.expansion-purpose {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0 0 20px 0;
    padding-left: 4px;
}

.expansion-actions {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.expansion-actions li {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.expansion-actions li::before {
    content: '·';
    position: absolute;
    left: 4px;
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
}

/* 변화 블록 */
.expansion-change {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: var(--bg-main);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.change-label {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    background: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid var(--primary);
    letter-spacing: 0.5px;
}

.expansion-change p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.65;
    margin: 0;
    font-weight: 500;
}

/* 마무리 블록 */
.expansion-closing {
    text-align: center;
    max-width: 560px;
    margin: 48px auto 0;
    padding: 36px 28px;
    background: var(--primary);
    border-radius: 16px;
}

.expansion-closing p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.85;
    margin: 0;
}

.expansion-closing strong {
    color: var(--white);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.closing-highlight {
    color: #A8C5E2;
    font-weight: 700;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .phase-expansion {
        margin-top: 36px;
    }

    .expansion-intro {
        padding: 24px 20px;
        margin-bottom: 36px;
    }

    .expansion-intro p {
        font-size: 16px;
    }

    .expansion-timeline {
        gap: 20px;
    }

    .expansion-week {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .expansion-week-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 14px;
    }

    .expansion-week-title {
        font-size: 18px;
    }

    .expansion-purpose {
        font-size: 14px;
        margin-bottom: 16px;
        padding-left: 0;
    }

    .expansion-actions {
        gap: 8px;
        margin-bottom: 16px;
    }

    .expansion-actions li {
        font-size: 14px;
        line-height: 1.7;
    }

    .expansion-change {
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px;
    }

    .expansion-change p {
        font-size: 14px;
    }

    .expansion-closing {
        padding: 28px 20px;
        margin-top: 36px;
        border-radius: 14px;
    }

    .expansion-closing p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .expansion-intro p {
        font-size: 15px;
        line-height: 1.9;
    }

    .expansion-week {
        padding: 20px 18px;
    }

    .expansion-week-badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .expansion-week-title {
        font-size: 17px;
    }

    .expansion-actions li {
        font-size: 13px;
    }

    .expansion-closing p {
        font-size: 15px;
    }
}

/* ============================================
   V2 리빌드 스타일 - 결정이 쉬운 랜딩
   글씨 크기 확대 + 문단 간소화
   ============================================ */

/* 공통 타이틀 v2 - 더 큰 폰트 */
.section-title-v2 {
    font-size: clamp(32px, 7vw, 48px);
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-dark);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.section-title-v2 .highlight {
    color: var(--primary);
}

/* 1. 문제 인식 v2 */
.problem-v2 {
    background: var(--bg-main);
    padding: 100px 24px;
}

.problem-list-v2 {
    max-width: 640px;
    margin: 0 auto 48px;
}

.problem-line {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: center;
}

.problem-line strong {
    color: var(--text-dark);
}

.problem-closing {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.75;
    max-width: 500px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.problem-closing strong {
    color: var(--primary);
}

/* 2. 왜 이 프로그램인가 v2 */
.why-v2 {
    background: var(--primary);
    color: var(--white);
    padding: 100px 24px;
}

.why-v2 .section-tag {
    color: rgba(255, 255, 255, 0.5);
}

.why-v2 .section-title-v2 {
    color: var(--white);
}

.why-v2 .section-title-v2 .highlight {
    color: #A8C5E2;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.why-card {
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}

.why-number {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.why-card strong {
    color: var(--white);
}

.why-philosophy {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.why-philosophy p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.why-philosophy strong {
    color: var(--white);
}

/* 3. 실제 결과 v2 */
.results-v2 {
    background: var(--white);
    padding: 100px 24px;
}

.results-note {
    max-width: 600px;
    margin: 0 auto 48px;
    text-align: center;
}

.results-note p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 8px;
}

.results-note strong {
    color: var(--text-dark);
}

.story-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.story-card-v2 {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
}

.story-header-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.story-header-v2 .story-location {
    font-size: 12px;
    color: var(--primary);
    background: rgba(31, 58, 95, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.story-header-v2 .story-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.story-result {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.story-result strong {
    color: var(--primary);
}

.story-detail {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.results-bottom {
    text-align: center;
    max-width: 560px;
    margin: 48px auto 0;
    padding: 32px 24px;
    background: var(--primary);
    border-radius: 12px;
}

.results-bottom p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.results-bottom strong {
    color: var(--white);
}

/* 비디오 v2 */
.video-v2 {
    background: var(--bg-main);
    padding: 80px 24px;
}

.video-v2 .section-title-v2 {
    text-align: center;
    margin-bottom: 12px;
}

.video-desc {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* 4. 프로필 v2 */
.profile-v2 {
    background: var(--white);
    padding: 100px 24px;
}

.profile-subtitle-v2 {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-top: -28px;
    margin-bottom: 48px;
}

.profile-content-v2 {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.profile-image-v2 img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.profile-intro-v2 {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.profile-intro-v2 strong {
    color: var(--text-dark);
}

.profile-stats {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.profile-stats li {
    font-size: 15px;
    color: var(--text-gray);
    background: var(--bg-main);
    padding: 10px 16px;
    border-radius: 6px;
    border: 1px solid var(--border);
}

.profile-stats li strong {
    color: var(--primary);
}

.profile-method {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.7;
}

.profile-method strong {
    color: var(--text-dark);
}

/* 5. 적합성 v2 */
.fit-v2 {
    background: var(--bg-main);
    padding: 100px 24px;
}

.fit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.fit-card {
    padding: 32px 28px;
    border-radius: 12px;
}

.fit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.fit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fit-card li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.fit-card li::before {
    content: '·';
    position: absolute;
    left: 4px;
    font-weight: 700;
}

.fit-card li strong {
    font-weight: 600;
}

.fit-good {
    background: var(--white);
    border: 1px solid var(--primary);
}

.fit-good h3 {
    color: var(--primary);
}

.fit-good li {
    color: var(--text-gray);
}

.fit-good li::before {
    color: var(--primary);
}

.fit-not {
    background: var(--white);
    border: 1px solid var(--border);
}

.fit-not h3 {
    color: var(--text-light);
}

.fit-not li {
    color: var(--text-light);
}

.fit-desc {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.fit-desc:last-child {
    margin-bottom: 0;
}

.fit-desc strong {
    color: var(--primary);
    font-weight: 600;
}

.fit-good .fit-desc {
    color: var(--text-dark);
}

.fit-not .fit-desc {
    color: var(--text-light);
}

/* 6. 가격 v2 */
.pricing-v2 {
    background: var(--white);
    padding: 100px 24px;
}

.price-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    margin-top: -8px;
    margin-bottom: 40px;
}

.price-box {
    text-align: center;
    max-width: 480px;
    margin: 0 auto 40px;
    padding: 40px 32px;
    background: var(--primary);
    border-radius: 16px;
}

.price-main {
    margin-bottom: 12px;
}

.price-number {
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
}

.price-unit {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-left: 4px;
}

.price-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.price-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.price-meta span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.price-meta strong {
    color: var(--white);
}

.included-box {
    max-width: 560px;
    margin: 0 auto 40px;
    padding: 32px 28px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
}

.included-summary {
    font-size: 17px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0 0 20px;
    line-height: 1.5;
}

.detail-link-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--white);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.detail-link-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 58, 95, 0.2);
}

/* 커리큘럼 토글 */
.curriculum-toggle {
    text-align: center;
    margin-bottom: 24px;
}

.curriculum-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.curriculum-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.toggle-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.curriculum-btn.open .toggle-arrow {
    transform: rotate(180deg);
}

/* 커리큘럼 상세 (접힘) */
.curriculum-detail {
    max-width: 680px;
    margin: 0 auto 40px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.curriculum-detail.open {
    max-height: 3000px;
}

/* 커리큘럼 인트로 */
.curriculum-intro {
    text-align: center;
    padding: 24px 20px;
    margin-bottom: 20px;
    background: var(--primary);
    border-radius: 12px;
}

.curriculum-intro p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.curriculum-intro strong {
    color: var(--white);
}

/* 시스템 빌드업 스타일 */
.curriculum-phase.system-build {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
}

.curriculum-phase.system-build h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.build-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.build-col {
    padding: 16px;
    border-radius: 10px;
}

.build-col.participant {
    background: #F0F4F8;
}

.build-col.operator {
    background: rgba(31, 58, 95, 0.08);
}

.build-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.build-col.participant .build-label {
    color: var(--text-gray);
}

.build-col.operator .build-label {
    color: var(--primary);
}

.build-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.build-col li {
    font-size: 14px;
    color: var(--text-dark);
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.build-col.participant li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--text-light);
}

.build-col.operator li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

/* 커리큘럼 요약 */
.curriculum-summary {
    text-align: center;
    padding: 24px 20px;
    margin: 20px 0;
    background: var(--bg-main);
    border-radius: 12px;
    border: 1px dashed var(--border);
}

.curriculum-summary p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.curriculum-summary strong {
    color: var(--primary);
}

/* 기존 스타일 유지 */
.curriculum-phase {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    margin-bottom: 16px;
}

.curriculum-phase h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.curriculum-phase.phase-light h4 {
    color: var(--text-gray);
}

.phase-sub {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.week-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.week-badge {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.week-badge.light {
    background: var(--text-light);
}

.week-item strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.week-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.phase-note {
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(31, 58, 95, 0.06);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.phase-note p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.curriculum-bonus {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 20px;
}

.curriculum-bonus h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.curriculum-bonus ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.curriculum-bonus li {
    font-size: 15px;
    color: var(--text-gray);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.curriculum-bonus li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.curriculum-bonus li strong {
    color: var(--primary);
}

.bonus-note {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.curriculum-closing {
    text-align: center;
    padding: 28px 24px;
    background: var(--primary);
    border-radius: 12px;
    margin-top: 16px;
}

.curriculum-closing p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.curriculum-closing strong {
    color: var(--white);
}

.curriculum-closing .highlight {
    color: #A8C5E2;
}

/* 최종 CTA */
.final-cta {
    text-align: center;
    max-width: 480px;
    margin: 40px auto 0;
}

.cta-headline {
    margin-bottom: 28px;
}

.cta-headline .cta-small {
    display: block;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.cta-headline strong {
    font-size: 28px;
    color: var(--white);
    font-weight: 700;
}

.cta-flow {
    font-size: 17px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 28px;
}

.cta-flow .now {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
}

.cta-flow .cta-arrow {
    display: block;
    font-size: 20px;
    margin: 8px 0;
    color: rgba(255,255,255,0.5);
}

.cta-flow .cta-next-step {
    font-size: 20px;
    color: var(--white);
}

.cta-flow .cta-next-step strong {
    color: #fbbf24;
    font-size: 24px;
}

.cta-final {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    padding: 20px 56px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    animation: none;
}

.cta-final:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31, 58, 95, 0.25);
}

.cta-urgency {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 16px;
}

/* FAQ v2 */
.faq-v2 {
    background: var(--bg-main);
    padding: 80px 24px;
}

.faq-list-v2 {
    max-width: 640px;
    margin: 0 auto;
}

.faq-item-v2 {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 16px;
}

.faq-item-v2 h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.faq-item-v2 p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.65;
}

.faq-item-v2 strong {
    color: var(--primary);
}

/* ============================================
   V2 반응형
   ============================================ */
@media (max-width: 768px) {
    .section-title-v2 {
        font-size: 28px;
    }

    .problem-line {
        font-size: 17px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .story-grid-v2 {
        grid-template-columns: 1fr;
    }

    .story-result {
        font-size: 20px;
    }

    .profile-content-v2 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile-image-v2 {
        max-width: 240px;
        margin: 0 auto;
    }

    .profile-stats {
        justify-content: center;
    }

    .fit-grid {
        grid-template-columns: 1fr;
    }

    .price-number {
        font-size: 52px;
    }

    .price-meta {
        flex-direction: column;
        gap: 8px;
    }

    .week-item {
        flex-direction: column;
        gap: 8px;
    }

    .week-badge {
        width: auto;
        height: auto;
        padding: 6px 12px;
    }

    /* 시스템 빌드업 반응형 */
    .build-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .build-col {
        padding: 14px;
    }

    .curriculum-intro {
        padding: 20px 16px;
    }

    .curriculum-intro p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .problem-v2,
    .why-v2,
    .results-v2,
    .profile-v2,
    .fit-v2,
    .pricing-v2 {
        padding: 72px 20px;
    }

    .section-title-v2 {
        font-size: 26px;
        margin-bottom: 32px;
    }

    .problem-line {
        font-size: 16px;
    }

    .problem-closing {
        font-size: 16px;
    }

    .why-card {
        padding: 24px 20px;
    }

    .why-card h3 {
        font-size: 18px;
    }

    .results-note p {
        font-size: 15px;
    }

    .story-card-v2 {
        padding: 24px 20px;
    }

    .story-result {
        font-size: 18px;
    }

    .profile-intro-v2 {
        font-size: 16px;
    }

    .fit-card {
        padding: 24px 20px;
    }

    .price-box {
        padding: 32px 24px;
    }

    .price-number {
        font-size: 44px;
    }

    .price-unit {
        font-size: 22px;
    }

    .included-box {
        padding: 24px 20px;
    }

    .curriculum-phase {
        padding: 24px 20px;
    }

    .cta-final {
        width: 100%;
        padding: 18px 32px;
        font-size: 17px;
    }

    .faq-item-v2 {
        padding: 20px 20px;
    }
}

/* ============================================
   후기 무한 캐러셀 스타일
   ============================================ */

.review-carousel {
    width: 100%;
    overflow: hidden;
    margin: 48px 0;
}

.review-track {
    display: flex;
    gap: 20px;
    animation: scrollReviews 40s linear infinite;
    width: max-content;
}

.review-carousel:hover .review-track {
    animation-play-state: paused;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        /* 6개 카드 * (320px + 20px gap) = 2040px */
        transform: translateX(-2040px);
    }
}

.review-card {
    flex-shrink: 0;
    width: 320px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 20px rgba(31, 58, 95, 0.08);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.review-location {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(31, 58, 95, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
}

.review-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.review-content {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 20px;
    min-height: 100px;
}

.review-content strong {
    color: var(--primary);
    font-weight: 600;
}

.review-card .review-btn-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.review-card .review-btn {
    font-size: 12px;
    padding: 8px 14px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.2s ease;
}

.review-card .review-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.review-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* 모바일 반응형 - 캐러셀 */
@media (max-width: 768px) {
    .review-carousel {
        margin: 36px 0;
    }

    .review-track {
        gap: 16px;
        animation-duration: 35s;
    }

    .review-card {
        width: 280px;
        padding: 24px 20px;
    }

    .review-content {
        font-size: 13px;
        min-height: 90px;
    }
}

@media (max-width: 480px) {
    .review-track {
        gap: 14px;
        animation-duration: 30s;
    }

    .review-card {
        width: 260px;
        padding: 20px 18px;
    }

    .review-content {
        font-size: 13px;
        line-height: 1.7;
        min-height: 85px;
    }

    .review-card .review-btn {
        font-size: 11px;
        padding: 6px 12px;
    }

    .review-disclaimer {
        font-size: 12px;
        padding: 0 16px;
    }
}

/* ============================================
   가격 인식 전환 섹션 스타일
   ============================================ */

.pricing-mindset {
    background: #FAFAFA;
    padding: 88px 24px;
}

.mindset-title {
    font-size: clamp(26px, 5vw, 38px);
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.35;
}

.mindset-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.mindset-content p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.85;
    margin-bottom: 28px;
}

.mindset-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.mindset-emphasis {
    font-size: 20px !important;
    color: var(--primary) !important;
    font-weight: 600;
    margin-top: 40px !important;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.mindset-closing {
    max-width: 640px;
    margin: 48px auto 0;
    text-align: center;
    padding: 28px 24px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.mindset-closing p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.75;
    margin: 0;
}

.mindset-closing strong {
    color: var(--primary);
    font-weight: 600;
}

/* 모바일 반응형 - 가격 인식 전환 */
@media (max-width: 768px) {
    .pricing-mindset {
        padding: 72px 20px;
    }

    .mindset-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .mindset-content p {
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 24px;
    }

    .mindset-emphasis {
        font-size: 18px !important;
        margin-top: 32px !important;
        padding-top: 28px;
    }

    .mindset-closing {
        padding: 24px 20px;
        margin-top: 40px;
    }

    .mindset-closing p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .pricing-mindset {
        padding: 64px 20px;
    }

    .mindset-title {
        font-size: 24px;
        margin-bottom: 36px;
    }

    .mindset-content p {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .mindset-emphasis {
        font-size: 17px !important;
    }

    .mindset-closing p {
        font-size: 15px;
    }
}


/* ============================================
   Urgent/Warning 스타일 - 긴박성 강조
   ============================================ */

/* 긴급 텍스트 강조 */
.urgent-text {
    color: var(--urgent-red);
    font-weight: 700;
}

/* 긴급 경고 문구 */
.urgent-warning {
    color: var(--urgent-red);
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 28px;
    line-height: 1.6;
}

/* 긴급 CTA 버튼 - 레드 */
.cta-button.cta-urgent {
    background: var(--urgent-red);
    border: none;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}

.cta-button.cta-urgent:hover {
    background: var(--urgent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .urgent-warning {
        font-size: 16px;
        margin: 16px 0 24px;
    }
}


/* ============================================
   진단 섹션 스타일
   ============================================ */

.diagnosis-v2 {
    background: var(--bg-main);
}

.diagnosis-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.diagnosis-desc {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.diagnosis-btn {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.diagnosis-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 58, 95, 0.25);
}

.diagnosis-note {
    margin-top: 28px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.diagnosis-note strong {
    color: var(--primary);
}

@media (max-width: 768px) {
    .diagnosis-desc {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .diagnosis-btn {
        padding: 16px 32px;
        font-size: 15px;
    }

    .diagnosis-note {
        font-size: 14px;
        margin-top: 24px;
    }
}

/* ============================================
   Price Teaser 섹션 (메인 페이지)
   ============================================ */
.price-teaser {
    padding: 56px 0;
    background: var(--bg-main);
}

.price-teaser .container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}

.price-teaser__card {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    /* 고급스러운 버건디 톤 배경 (약하게) */
    background: linear-gradient(135deg, rgba(107, 31, 42, 0.04), rgba(255, 255, 255, 0.95)),
                var(--bg-card);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.price-teaser .kicker {
    display: inline-block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 500;
}

.price-teaser .title {
    margin: 0 0 12px;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    line-height: 1.35;
}

.price-teaser .desc {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.75;
    font-size: 15px;
}

.price-teaser .btn-row {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.price-teaser .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.price-teaser .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.price-teaser .btn-primary {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.price-teaser .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(31, 58, 95, 0.25);
}

.price-teaser .btn-ghost {
    background: transparent;
    border-color: var(--border);
}

.price-teaser .btn-ghost:hover {
    background: var(--bg-main);
}

.price-teaser .fineprint {
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Price Teaser 모바일 반응형 */
@media (max-width: 768px) {
    .price-teaser {
        padding: 40px 0;
    }

    .price-teaser__card {
        padding: 22px 18px;
    }

    .price-teaser .title {
        font-size: 20px;
        line-height: 1.4;
    }

    .price-teaser .desc {
        font-size: 14px;
        line-height: 1.75;
    }

    .price-teaser .btn-row {
        flex-direction: column;
    }

    .price-teaser .btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 15px;
    }

    .price-teaser .fineprint {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* ============================================
   Contact 섹션 (상담 문의)
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.contact-section .container {
    max-width: 600px;
    text-align: center;
}

.contact-section .section-tag {
    margin-bottom: 12px;
}

.contact-section .section-title-v2 {
    margin-bottom: 16px;
}

.contact-desc {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-btn {
    display: inline-block;
    padding: 16px 36px;
    background: var(--primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.contact-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31, 58, 95, 0.2);
}

.contact-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-desc {
        font-size: 15px;
    }

    .contact-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* ============================================
   일정 안내 박스 (Schedule Box)
   ============================================ */
.scheduleBox{margin:28px 0 22px;}
.scheduleInner{
  max-width:860px; margin:0 auto;
  padding:18px 18px;
  border:1px solid rgba(59,130,246,0.35);
  border-radius:18px;
  background:rgba(30,58,95,0.85);
  backdrop-filter: blur(6px);
}
.scheduleTitle{margin:0 0 12px; font-size:18px; font-weight:800; color:#FFFFFF;}
.scheduleGrid{display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:10px;}
.scheduleItem{
  padding:12px 12px;
  border-radius:14px;
  background:rgba(15,35,60,0.9);
  border:1px solid rgba(59,130,246,0.3);
}
.scheduleItem .scheduleLabel{font-size:13px; color:#93C5FD; font-weight:700;}
.scheduleItem .scheduleValue{margin-top:4px; font-size:15px; color:#FFFFFF; font-weight:700; line-height:1.35;}
.scheduleItem.highlight{
  border-color: rgba(59,130,246,0.6);
  background: rgba(59,130,246,0.25);
}
.scheduleItem.highlight .scheduleValue{color:#FFFFFF;}
.scheduleNote{margin:12px 0 0; font-size:12.5px; color:#BFDBFE; line-height:1.45;}

@media (max-width: 520px){
  .scheduleGrid{grid-template-columns:1fr;}
  .scheduleInner{padding:16px 14px;}
  .scheduleTitle{font-size:17px;}
}

/* ===== #schedule 섹션: 프리미엄 딥네이비 + 유리감 ===== */
#schedule{
  margin: 28px 0 22px;
}

#schedule .scheduleInner{
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 20px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

#schedule .scheduleTitle{
  color: #1a1a1a !important;
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 14px;
}

#schedule .scheduleGrid{
  display:grid !important;
  grid-template-columns:repeat(2, minmax(0,1fr)) !important;
  gap:14px !important;
}

/* 카드 기본: 밝은 배경 */
#schedule .scheduleItem{
  border-radius: 18px !important;
  padding: 18px 18px !important;
  background: rgba(245,247,250,0.95) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important;
}

/* 텍스트: 검정색 계열 */
#schedule .scheduleLabel{
  color:#555555 !important;
  font-weight:700 !important;
  font-size:13px !important;
}
#schedule .scheduleValue{
  color:#1a1a1a !important;
  font-weight:800 !important;
  font-size:15.5px !important;
  margin-top:6px !important;
  line-height:1.35 !important;
}

/* 2/23 카드만 은은 강조 */
#schedule .scheduleItem.highlight{
  background: rgba(240,245,255,0.98) !important;
  border: 1px solid rgba(0,0,0,0.12) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10) !important;
}

/* 혹시 남아있는 파란 outline/그라데이션 제거 */
#schedule .scheduleItem,
#schedule .scheduleItem.highlight{
  outline:none !important;
}
#schedule .scheduleItem::before,
#schedule .scheduleItem::after{
  content:none !important;
}

#schedule .scheduleNote{
  margin-top:12px;
  color:#555555 !important;
  font-size:12.5px !important;
}

@media (max-width:520px){
  #schedule .scheduleGrid{ grid-template-columns:1fr !important; }
  #schedule .scheduleInner{ padding:16px 14px; }
}


/* ============================================
   마감 안내 스타일
   ============================================ */
.closed-notice {
    margin-top: 40px;
    padding: 40px 32px;
    background: var(--primary);
    border-radius: 12px;
    text-align: center;
}

.closed-notice-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

@media (max-width: 768px) {
    .closed-notice {
        padding: 32px 20px;
        margin-top: 32px;
    }

    .closed-notice-text {
        font-size: 20px;
    }
}
