/* =================================================================
   Pay Studio - Industry (내 업종 찾기)
   - default/style.css 를 상속해서 chip/모달 스타일 재사용
   - industry 전용 추가 스타일만 정의
   ================================================================= */

.pin_sect_wrap {
    display: flex;
    flex-direction: column;
    gap: 72px;
    padding-top: 32px;
    padding-bottom: 72px;
}

.pin_sect {
    position: relative;
}

/* industry 페이지에선 industry section 자체가 풀 (max-height 등 영향 없게) */
.pin_main {
    margin-top: 0;
}

/* 더보기 버튼은 industry 페이지에선 숨김 (이미 expanded 고정) */
.pin_main .pdf_show_more_wrap {
    display: none;
}

.pin_main .pdf_industry_groups:not(.expanded)::after {
    display: none;
}

/* ============================================================
   S02. 사용법 안내 3 step
   ============================================================ */
.pin_steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.pin_steps li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 18px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0e6d0;
    box-shadow: 0 4px 20px -8px rgba(255, 174, 0, 0.1);
    position: relative;
}

.pin_steps .ps_no {
    flex-shrink: 0;
    font-size: 24px;
    font-weight: 900;
    color: #ffd57a;
    line-height: 1;
}

.pin_steps i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff8e8, #ffe8c4);
    color: #ffae00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.pin_steps p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #1a1f3a;
    font-weight: 600;
}

.pin_steps p strong {
    color: #c47900;
    font-weight: 800;
}

/* ============================================================
   S04. Not found / 안내 박스
   ============================================================ */
.pin_notfound_box {
    display: flex;
    gap: 16px;
    background: linear-gradient(135deg, #fff8e8, #ffe8c4);
    border: 1.5px dashed #ffae00;
    border-radius: 20px;
    padding: 26px 22px;
}

.pin_notfound_box > i {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #fff;
    color: #ffae00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.pin_notfound_box h3 {
    font-size: 16px;
    font-weight: 800;
    color: #1a1f3a;
    margin: 0 0 8px;
}

.pin_notfound_box p {
    font-size: 13px;
    line-height: 1.7;
    color: #5e6580;
    margin: 0 0 16px;
}

.pin_notfound_box p strong {
    color: #c47900;
    font-weight: 800;
}

.pin_inquire_btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #ffae00, #ff8a3c);
    border-radius: 100px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    transition: all 0.2s ease;
}

.pin_inquire_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(255, 174, 0, 0.55);
}

.pin_inquire_btn .arrow {
    transition: transform 0.2s ease;
}

.pin_inquire_btn:hover .arrow {
    transform: translateX(4px);
}

/* ============================================================
   S05. Final CTA — pay/method 와 동일 패턴 (다크 박스)
   ============================================================ */
.pin_final_cta .fcta_box {
    position: relative;
    background: linear-gradient(135deg, #0a0e2e 0%, #1a1f4d 100%);
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 30px 70px -20px rgba(10, 14, 46, 0.5);
}

.pin_final_cta .fcta_pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.pin_final_cta .fcta_glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(50px);
}

.pin_final_cta .fg_1 {
    top: -30%;
    left: -10%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 196, 74, 0.42) 0%, transparent 70%);
}

.pin_final_cta .fg_2 {
    bottom: -40%;
    right: -10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 138, 60, 0.32) 0%, transparent 70%);
}

.pin_final_cta .fcta_inner {
    position: relative;
    padding: 38px 22px;
    text-align: center;
}

.pin_final_cta .fcta_text {
    color: #fff;
}

.pin_final_cta .fcta_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    margin-bottom: 16px;
}

.pin_final_cta .fe_dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffae00;
    box-shadow: 0 0 10px #ffae00;
    animation: pinPulse 1.5s ease-in-out infinite;
}

@keyframes pinPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.pin_final_cta .fcta_title {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 12px;
}

.pin_final_cta .em_grad_w {
    background: linear-gradient(135deg, #fff5d8 0%, #ffd57a 50%, #ffae00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.pin_final_cta .fcta_desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 22px;
}

.pin_final_cta .fcta_btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.pin_final_cta .fcta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.25s ease;
    width: 100%;
    max-width: 320px;
}

.pin_final_cta .fcta_btn.primary {
    background: linear-gradient(135deg, #ffd57a 0%, #ffae00 50%, #ff8a3c 100%);
    color: #1a1f3a;
    box-shadow: 0 12px 30px -10px rgba(255, 174, 0, 0.7);
}

.pin_final_cta .fcta_btn.primary:hover {
    transform: translateY(-2px);
}

.pin_final_cta .fcta_btn.ghost {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    backdrop-filter: blur(8px);
}

.pin_final_cta .fcta_btn .arrow {
    transition: transform 0.2s ease;
}

.pin_final_cta .fcta_btn:hover .arrow {
    transform: translateX(4px);
}

.pin_final_cta .fcta_btn i {
    font-size: 18px;
}

/* ============================================================
   📱 Tablet 768px+
   ============================================================ */
@media screen and (min-width: 768px) {
    .pin_sect_wrap {
        gap: 90px;
        padding-top: 48px;
        padding-bottom: 90px;
    }

    .pin_steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .pin_steps li {
        flex-direction: column;
        text-align: center;
        padding: 26px 20px;
    }

    .pin_steps .ps_no {
        font-size: 28px;
    }

    .pin_notfound_box {
        padding: 32px 28px;
    }

    .pin_notfound_box h3 {
        font-size: 18px;
    }

    .pin_final_cta .fcta_inner {
        padding: 60px 50px;
    }

    .pin_final_cta .fcta_btns {
        flex-direction: row;
        justify-content: center;
    }

    .pin_final_cta .fcta_title {
        font-size: 32px;
    }
}

@media screen and (min-width: 1024px) {
    .pin_sect_wrap {
        gap: 120px;
        padding-top: 64px;
        padding-bottom: 120px;
    }
}
