@charset "utf-8";
/**
 * =============================================
 * scope.css - 제작 가능 범위 페이지 전용
 * Location: /static/about/css/scope.css
 * 
 * 로드 순서:
 * 1. total_common.css (전체)
 * 2. static_common.css (정적 페이지 공통)
 * 3. scope.css (이 파일)
 * 
 * 방식: Mobile First
 * 분기: 768px (모바일 / PC)
 * =============================================
 */

/* ============================================
   1. 페이지 탭 네비게이션 (Mobile First)
   ============================================ */
.page-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.page-tab-nav a {
    flex: 1 1 calc(50% - 4px);
    padding: 10px 12px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-tab-nav a:hover {
    color: #667eea;
    border-color: #667eea;
}

.page-tab-nav a.active {
    color: #fff;
    background: #667eea;
    border-color: #667eea;
    font-weight: 600;
}

/* ============================================
   2. 페이지 하단 네비게이션 (Mobile First)
   ============================================ */
.page-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
    padding: 0 5px;
}

.page-nav .btn {
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    font-size: 0.95rem;
    border-radius: 8px;
}

/* ============================================
   3. SCOPE GRID - 6개 기능 카드 (Mobile First)
   ============================================ */
.scope-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
}

.scope-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.scope-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.scope-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.scope-card h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0 0 6px 0;
}

.scope-desc {
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.scope-features {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.scope-features li {
    font-size: 0.85rem;
    color: #555;
    padding: 4px 0 4px 20px;
    position: relative;
    line-height: 1.5;
}

.scope-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.scope-example {
    background: white;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #666;
    border-left: 3px solid #667eea;
}

.scope-example span {
    font-weight: 700;
    color: #667eea;
}

/* ============================================
   4. TABLE STYLES (Mobile First)
   ============================================ */
.highlight-cell {
    background: #f0f9f0 !important;
    color: #27ae60;
    font-weight: 600;
}

.highlight-row {
    background: #f0f9f0 !important;
}

.highlight-row td {
    color: #27ae60;
    font-weight: 600;
}

/* ============================================
   5. REASON BOX (Mobile First)
   ============================================ */
.reason-box {
    background: #fff9e6;
    border-radius: 10px;
    padding: 16px;
    margin: 16px 0;
    border: 1px solid #f1c40f;
}

.reason-box h4 {
    font-size: 0.95rem;
    color: #b7950b;
    margin: 0 0 10px 0;
}

.reason-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reason-box li {
    font-size: 0.85rem;
    color: #555;
    padding: 5px 0;
    line-height: 1.5;
}

.reason-box li strong {
    color: #b7950b;
}

/* ============================================
   6. SUITABLE GRID - 적합한 업종 (Mobile First)
   ============================================ */
.suitable-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.suitable-card {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.suitable-card:hover {
    border-color: #667eea;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.15);
}

.suitable-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.suitable-card h4 {
    font-size: 0.9rem;
    color: #2c3e50;
    margin: 0 0 6px 0;
}

.suitable-card p {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   PC (min-width: 768px)
   ============================================ */
@media (min-width: 768px) {

    /* 페이지 탭 네비게이션 - 가로 배치 */
    .page-tab-nav {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 15px 20px;
    }

    .page-tab-nav a {
        flex: 1;
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    /* 페이지 하단 네비게이션 */
    .page-nav {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin: 30px 0;
        padding: 0;
    }

    .page-nav .btn {
        width: auto;
        min-width: 180px;
        max-width: 220px;
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* Scope Grid - 3열 */
    .scope-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .scope-card {
        padding: 24px;
    }

    .scope-icon {
        font-size: 2.2rem;
    }

    .scope-card h3 {
        font-size: 1.2rem;
    }

    .scope-desc {
        font-size: 0.9rem;
    }

    .scope-features li {
        font-size: 0.9rem;
    }

    .scope-example {
        font-size: 0.85rem;
    }

    /* Reason Box */
    .reason-box {
        padding: 20px;
    }

    .reason-box h4 {
        font-size: 1rem;
    }

    .reason-box li {
        font-size: 0.9rem;
    }

    /* Suitable Grid - 3열 */
    .suitable-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .suitable-card {
        padding: 20px;
    }

    .suitable-icon {
        font-size: 2rem;
    }

    .suitable-card h4 {
        font-size: 1rem;
    }

    .suitable-card p {
        font-size: 0.85rem;
    }
}