/* 사이트 제작 문의 — 전 사이트 공통 푸터 맨 아래 크레딧 바 */
.epc-footer-credit {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 20px;
    background: #0b0e17;
    background-image: radial-gradient(circle at 50% 0%, rgba(124, 92, 255, 0.16), transparent 60%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", Roboto, sans-serif;
}

.epc-footer-credit__inner {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 14px;
    padding: 10px 10px 10px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    max-width: 100%;
}

.epc-footer-credit__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    color: #9db4ff;
}

.epc-footer-credit__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.epc-footer-credit__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: none;
    box-sizing: border-box;
    padding: 9px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4f7dff, #7c5cff);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.01em;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(79, 125, 255, 0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.epc-footer-credit__btn svg {
    flex: none;
    transition: transform 0.18s ease;
}

.epc-footer-credit__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 125, 255, 0.45);
    filter: brightness(1.05);
}

.epc-footer-credit__btn:hover svg {
    transform: translateX(2px);
}

/* 모바일 하단 고정 상담바에 가려지지 않도록 크레딧 바 자체에 하단 여유 공간 확보 */
body.epc-has-bottom-bar .epc-footer-credit {
    padding-bottom: calc(var(--epc-mo-fixed-bar-h, 92px) + 22px);
}

@media (max-width: 480px) {
    .epc-footer-credit {
        padding: 18px 16px;
    }

    .epc-footer-credit__inner {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        width: 100%;
        max-width: 300px;
        padding: 16px 18px;
        border-radius: 20px;
    }

    .epc-footer-credit__text {
        white-space: normal;
    }

    .epc-footer-credit__btn {
        align-self: stretch;
        padding: 10px 16px;
        font-size: 13px;
    }
}
