/* ===== 협약기업 혜택 카드 ===== */
.benefit-card-list { display: flex; gap: 20px; }
.benefit-card-list .benefit-card { flex: 1; background: #fff; border-radius: 16px; padding: 25px 20px; position: relative; overflow: hidden; border: 1px solid var(--line); }
.benefit-card-list .benefit-card::before { content: ''; position: absolute; top: -30px; right: -30px; width: 120px; height: 120px; border-radius: 50%; opacity: 0.15; }
.benefit-card-list .benefit-card:nth-child(1) { background: #f1f9f3; border-color: #b4dfc0; }
.benefit-card-list .benefit-card:nth-child(1)::before { background: #34a853; }
.benefit-card-list .benefit-card:nth-child(2) { background: #f1f3f9; border-color: #afc2e1; }
.benefit-card-list .benefit-card:nth-child(2)::before { background: #4285f4; }
.benefit-card-list .benefit-card:nth-child(3) { background: #fff8e9; border-color: #f7ca90; }
.benefit-card-list .benefit-card:nth-child(3)::before { background: #f9ab00; }
.benefit-card-list .benefit-card .icon-area { width: 48px; height: 48px; margin-bottom: 20px; position: relative; z-index: 1; }
.benefit-card-list .benefit-card .icon-area img { width: 100%; height: 100%; object-fit: contain; }
.benefit-card-list .benefit-card .card-title { font-size: 2.1rem; font-weight: 700; line-height: 1.5; margin-bottom: 12px; word-break: keep-all; position: relative; z-index: 1; }
.benefit-card-list .benefit-card:nth-child(1) .card-title { color: #2e7d32; }
.benefit-card-list .benefit-card:nth-child(2) .card-title { color: #1565c0; }
.benefit-card-list .benefit-card:nth-child(3) .card-title { color: #e6880e; }
.benefit-card-list .benefit-card .card-desc { font-size: 1.6rem; color: #555; line-height: 1.7; word-break: keep-all; position: relative; z-index: 1; }

/* ===== 협약기업 신청절차 스텝 ===== */
.process-step-list { display: flex; align-items: stretch; gap: 15px; }
.process-step-list .step-item { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 30px 10px; background: #f2f6f7; border-radius: 12px; border: 1px solid #c9d0d1; }
.process-step-list .step-item .step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--theme); color: #fff; font-size: 2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; flex-shrink: 0; }
.process-step-list .step-item .step-content { display: flex; flex-direction: column; align-items: center; }
.process-step-list .step-item .step-title { font-size: 1.8rem; font-weight: 600; color: #111; line-height: 1.5; margin-bottom: 8px; word-break: keep-all; }
.process-step-list .step-item .step-desc { font-size: 1.5rem; color: #555; line-height: 1.6; word-break: keep-all; }
.process-step-list .step-item .step-desc a { color: var(--theme); font-weight: 600; }
.process-step-list .step-item .step-desc a:hover { text-decoration: underline; }
.process-step-list .step-arrow { display: flex; align-items: center; padding-top: 14px; flex-shrink: 0; }
.process-step-list .step-arrow::before { content: ''; width: 12px; height: 12px; border-top: 3px solid #bbb; border-right: 3px solid #bbb; transform: rotate(45deg); }

/* ===== 협약서류 다운로드 ===== */
.sub-bullet-list .link-text { color: var(--theme); font-weight: 600; }
.sub-bullet-list .link-text:hover { text-decoration: underline; }
.download-area { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 25px; }
.download-area .download-btn { display: flex; align-items: center; justify-content: center; gap: 6px; width: 240px; padding: 15px 0; border-radius: 10px; background: var(--dark); font-size: 1.7rem; font-weight: 600; color: #fff; transition: opacity 0.2s; }
.download-area .download-btn:hover { opacity: 0.85; }
.download-area .download-btn .download-icon { width: 23px; height: 23px; flex-shrink: 0; }
.download-area .download-btn .download-icon img { width: 100%; height: 100%; object-fit: contain; }

@media (max-width: 1024px) {
    .benefit-card-list { gap: 15px; }
    .benefit-card-list .benefit-card { padding: 25px 20px; }
}

@media (max-width: 768px) {
    .process-step-list { flex-direction: column; gap: 0; }
    .process-step-list .step-item { flex-direction: row; text-align: left; padding: 14px 0; border-radius: 0; border: none; border-bottom: 1px solid var(--line); background: none; gap: 10px; }
    .process-step-list .step-item:last-child { border-bottom: none; }
    .process-step-list .step-item .step-num { width: 36px; height: 36px; font-size: 1.5rem; margin-bottom: 0; }
    .process-step-list .step-item .step-content { align-items: flex-start; }
    .process-step-list .step-item .step-title { font-size: 1.6rem; margin-bottom: 0; }
    .process-step-list .step-item .step-title br { display: none; }
    .process-step-list .step-item .step-desc { font-size: 1.3rem; }
    .process-step-list .step-arrow { display: none; }
    .benefit-card-list { flex-direction: column; gap: 12px; }
    .benefit-card-list .benefit-card { padding: 15px; }
    .benefit-card-list .benefit-card::before { width: 100px; height: 100px; top: -25px; right: -25px; }
    .benefit-card-list .benefit-card .icon-area { margin-bottom: 15px; }
    .benefit-card-list .benefit-card .card-title { font-size: 1.7rem; margin-bottom: 10px; }
    .benefit-card-list .benefit-card .card-title br { display: none; }
    .benefit-card-list .benefit-card .card-desc { font-size: 1.5rem; }
}

@media (max-width: 580px) {
    .process-step-list .step-item .step-num { width: 32px; height: 32px; font-size: 1.2rem; }
    .benefit-card-list .benefit-card { padding: 12px; }
    .benefit-card-list .benefit-card .icon-area { width: 44px; height: 44px; margin-bottom: 10px; }
    .benefit-card-list .benefit-card .card-title { font-size: 1.6rem; }
    .benefit-card-list .benefit-card .card-desc { font-size: 1.3rem; }
    .download-area { gap: 5px; }
    .download-area .download-btn { width: calc(50% - 8px); padding: 14px 0; font-size: 1.3rem; gap: 4px; border-radius: 8px; }
    .download-area .download-btn .download-icon { width: 20px; height: 20px; }
}