@charset "utf-8";

/* ============================== 애니메이션 */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: .4; }
    100% { transform: scale(1.6); opacity: 0; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ============================== 블록 레이아웃 */
.rc-block {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.rc-block--gray {
    background: linear-gradient(135deg, #f0f4f8 0%, #f7f8fa 50%, #eef3f9 100%);
}
.rc-block__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

/* ============================== 섹션 타이틀 */
.rc-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    margin: 0 0 10px;
    background: linear-gradient(90deg, #278bda, #5ab4f5, #278bda);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}
.rc-title {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin: 0 0 52px;
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    position: relative;
    display: inline-block;
}
.rc-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #278bda, #5ab4f5);
}

/* ============================== 인재상 카드 */
.rc-talent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.rc-talent__card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px 36px;
    border: 1px solid #eef1f5;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s cubic-bezier(.22,1,.36,1);
}
.rc-talent__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, transparent);
    transition: background .4s ease;
}
.rc-talent__card:nth-child(1)::before { background: linear-gradient(90deg, #278bda, #5ab4f5); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.rc-talent__card:nth-child(2)::before { background: linear-gradient(90deg, #26a683, #4dd9ac); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.rc-talent__card:nth-child(3)::before { background: linear-gradient(90deg, #eb5757, #f2918a); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.rc-talent__card:hover::before { transform: scaleX(1); }
.rc-talent__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.1);
}
.rc-talent__card:nth-child(1):hover { box-shadow: 0 20px 50px rgba(39,139,218,.15); }
.rc-talent__card:nth-child(2):hover { box-shadow: 0 20px 50px rgba(38,166,131,.15); }
.rc-talent__card:nth-child(3):hover { box-shadow: 0 20px 50px rgba(235,87,87,.12); }
.rc-talent__num {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    color: #f0f2f5;
    position: absolute;
    top: 16px;
    right: 24px;
    transition: color .4s ease, transform .4s ease;
}
.rc-talent__card:hover .rc-talent__num {
    color: #e4e9ef;
    transform: scale(1.1);
}
.rc-talent__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.rc-talent__card:hover .rc-talent__icon {
    transform: scale(1.15) rotate(-3deg);
}
.rc-talent__icon--blue {
    background: rgba(39,139,218,.1);
    color: #278bda;
}
.rc-talent__card:hover .rc-talent__icon--blue {
    box-shadow: 0 6px 20px rgba(39,139,218,.2);
}
.rc-talent__icon--teal {
    background: rgba(38,166,131,.1);
    color: #26a683;
}
.rc-talent__card:hover .rc-talent__icon--teal {
    box-shadow: 0 6px 20px rgba(38,166,131,.2);
}
.rc-talent__icon--coral {
    background: rgba(235,87,87,.1);
    color: #eb5757;
}
.rc-talent__card:hover .rc-talent__icon--coral {
    box-shadow: 0 6px 20px rgba(235,87,87,.15);
}
.rc-talent__name {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 0 0 14px;
}
.rc-talent__desc {
    font-size: 15px;
    color: #888;
    line-height: 1.75;
    margin: 0;
}

/* ============================== 채용절차 */
.rc-process {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 8px 0 0;
}
.rc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 150px;
}
.rc-step__circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #dfe3ea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, #278bda);
    margin-bottom: 16px;
    position: relative;
    transition: all .4s cubic-bezier(.22,1,.36,1);
}
.rc-step__circle::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary, #278bda);
    opacity: 0;
}
.rc-step:hover .rc-step__circle::before {
    animation: pulse-ring 1s ease-out infinite;
}
.rc-step:hover .rc-step__circle {
    border-color: var(--primary, #278bda);
    background: linear-gradient(135deg, #278bda, #5ab4f5);
    color: #fff;
    transform: scale(1.12);
    box-shadow: 0 8px 24px rgba(39,139,218,.3);
}
.rc-step__num {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary, #278bda);
    letter-spacing: 1px;
    margin-bottom: 5px;
    transition: transform .3s ease;
}
.rc-step:hover .rc-step__num {
    transform: scale(1.05);
}
.rc-step__name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    transition: color .3s ease;
}
.rc-step:hover .rc-step__name {
    color: var(--primary, #278bda);
}
.rc-step__arrow {
    display: flex;
    align-items: center;
    padding-top: 26px;
    color: #ccc;
    flex-shrink: 0;
    transition: color .3s ease, transform .3s ease;
}
.rc-step__arrow:hover {
    color: var(--primary, #278bda);
    transform: translateX(3px);
}

/* ============================== 기타 주의사항 */
.rc-notice {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 20px;
}
.rc-notice__row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 28px;
    background: #f7f8fa;
    border-radius: 12px;
    border-left: 3px solid transparent;
    transition: all .3s ease;
}
.rc-notice__row:hover {
    background: #eef4fb;
    border-left-color: var(--primary, #278bda);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(39,139,218,.08);
}
.rc-notice__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary, #278bda);
    flex-shrink: 0;
    margin-top: 9px;
    transition: transform .3s ease;
}
.rc-notice__row:hover .rc-notice__dot {
    transform: scale(1.5);
    box-shadow: 0 0 8px rgba(39,139,218,.4);
}
.rc-notice__sub {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
    transition: color .3s ease;
}
.rc-notice__row:hover .rc-notice__sub {
    color: var(--primary, #278bda);
}
.rc-notice__row p {
    font-size: 15px;
    color: #666;
    line-height: 1.75;
    margin: 0;
}
.rc-notice__row p strong {
    color: #222;
    font-weight: 600;
}

/* ============================== 반응형 */
@media (max-width: 768px) {
    .rc-block { padding: 52px 0; }
    .rc-block__inner { padding: 0 20px; }
    .rc-title { font-size: 24px; margin-bottom: 36px; }
    .rc-talent {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .rc-talent__card { padding: 28px 24px 24px; }
    .rc-talent__name { font-size: 20px; }
    .rc-talent__desc { font-size: 14px; }
    .rc-process {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 0;
    }
    .rc-step__arrow { display: none; }
    .rc-step { max-width: 33.33%; min-width: 100px; }
    .rc-step__circle { width: 56px; height: 56px; }
    .rc-step__circle svg { width: 20px; height: 20px; }
    .rc-step__name { font-size: 14px; }
    .rc-notice__row { padding: 18px 20px; }
    .rc-notice__sub { font-size: 15px; }
    .rc-notice__row p { font-size: 14px; }
}

@media (max-width: 480px) {
    .rc-block { padding: 40px 0; }
    .rc-title { font-size: 22px; margin-bottom: 28px; }
    .rc-step { min-width: 80px; }
    .rc-step__circle { width: 46px; height: 46px; }
    .rc-step__num { font-size: 10px; }
    .rc-step__name { font-size: 12px; }
}
