/* =========================================================
   MAIN PAGE CONTENT
========================================================= */

.page-center{
    align-items:flex-start;
    padding:40px 16px;
}

.content-box{
    width:100%;
    max-width:1200px;
    margin:0 auto;

    font-size:14px;
    font-weight:400;
    line-height:1.6;

    text-align:left;
}

/* =========================================================
   HERO
========================================================= */

.hero{
    width:100%;
    padding:50px 20px 40px;
    background:#ffffff;
    text-align:center;
}

.hero-inner{
    max-width:1100px;
    margin:0 auto;
}

.hero-title{
    margin-bottom:18px;

    font-size:clamp(28px, 4vw, 52px);
    font-weight:800;
    line-height:1.35;

    color:#111827;
    word-break:keep-all;
}

.hero-sub{
    max-width:1100px;
    margin:0 auto 10px;

    font-size:clamp(16px, 2vw, 22px);
    font-weight:500;
    line-height:1.6;

    color:#374151;

    word-break:keep-all;
}

.muted{
    color:#6b7280;
}

.small{
    font-size:13px;
}

/* =========================================================
   SECTION
========================================================= */

.section-gap{
    margin-top:36px;
}

section.py-5{
    width:100%;
}

/* =========================================================
   FEATURE BOX
========================================================= */

.feature-box{
    height:100%;

    position:relative;
    overflow:hidden;

    padding:34px 22px;

    background:#ffffff;

   border:1px solid #d1d5db;
    border-radius:24px;

    box-shadow:0 10px 28px rgba(0,0,0,0.06);

    text-align:center;

    transition:all .25s ease;
}

.feature-box::before{
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg, #16a34a, #22c55e);
}

.feature-box:hover{
    transform:translateY(-8px);

   border-color:#86efac;

    box-shadow:0 22px 44px rgba(0,0,0,0.10);
}

.feature-box h4{
    margin-bottom:14px;

    font-size:19px;
    line-height:1.4;
    font-weight:700;

    color:#111827;
}

.feature-box p{
    margin:0;

    font-size:15px;
    line-height:1.8;

    color:#4b5563;

    word-break:keep-all;
}

.feature-box ol{
    margin:0;
    padding-left:20px;

    font-size:15px;
    line-height:1.9;

    color:#374151;
}

.feature-icon{
    width:72px;
    height:72px;

    margin:0 auto 20px;

    border-radius:20px;

    background:#f0fdf4;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;
    color:#16a34a;
}

/* =========================================================
   TARGET SECTION
========================================================= */

.bg-light.section-gap{
    padding:46px 24px !important;

    background:linear-gradient(180deg, #f9fafb, #ffffff) !important;

    border:1px solid #e5e7eb;
    border-radius:24px !important;
}

.bg-light h2{
    color:#111827;
    font-size:clamp(22px, 3vw, 34px);
}

/* =========================================================
   CARD
========================================================= */

.card{
    position:relative;
    overflow:hidden;

    border:1px solid #e5e7eb !important;
    border-radius:24px;

    background:#ffffff;

    box-shadow:0 10px 28px rgba(0,0,0,0.06);

    transition:all .25s ease;
}

.card::before{
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg, #16a34a, #22c55e);
}

.card:hover{
    transform:translateY(-8px);

    border-color:#bbf7d0 !important;

    box-shadow:0 22px 44px rgba(0,0,0,0.10);
}

.card-body{
    padding:34px 24px;
}

.card-body img{
    width:68px !important;

    padding:14px;

    border-radius:20px;

    background:#f0fdf4;
}

.card-title{
    margin-bottom:12px;

    font-size:20px;
    font-weight:700;

    color:#111827;
}

.card-text{
    min-height:72px;

    font-size:15px;
    line-height:1.8;

    color:#4b5563 !important;

    word-break:keep-all;
}

/* =========================================================
   BUTTON
========================================================= */

.btn{
    border-radius:999px;

    padding:10px 20px;

    font-size:13px;
    font-weight:700;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width:1024px){

    .hero{
        padding:42px 16px 32px;
    }

    .feature-box{
        padding:28px 18px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width:768px){

    .page-center{
        padding:24px 12px;
    }

    .content-box{
        max-width:100%;
    }

    .hero{
        padding:34px 8px 28px;
    }

    .hero-title{
        font-size:28px;
        line-height:1.35;
    }

    .hero-sub{
        font-size:16px;
    }

    .section-gap{
        margin-top:26px;
    }

    .feature-box{
        padding:26px 16px;
        border-radius:20px;
    }

    .feature-icon{
        width:62px;
        height:62px;

        font-size:28px;
    }

    .feature-box h4{
        font-size:17px;
    }

    .feature-box p,
    .feature-box ol{
        font-size:14px;
    }

    .bg-light.section-gap{
        padding:34px 14px !important;
        border-radius:20px !important;
    }

    .bg-light h2{
        margin-bottom:28px !important;
        font-size:22px;
    }

    .card{
        border-radius:20px;
    }

    .card-body{
        padding:28px 18px;
    }

    .card-title{
        font-size:18px;
    }

    .card-text{
        min-height:auto;
        font-size:14px;
    }

    .btn{
        width:100%;
        max-width:280px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:480px){

    .hero-title{
        font-size:24px;
    }

    .hero-sub{
        font-size:15px;
    }

    .small{
        font-size:12px;
    }
}



/* =========================
   MEMBER SECTION
========================= */

.member-title{
    font-size:clamp(28px, 4vw, 42px);
    font-weight:800;

    color:#111827;
}

/* 카드 */

.member-card{
    position:relative;
    overflow:hidden;

    height:100%;

    padding:42px 28px;

    border-radius:28px;

    background:#ffffff;

    border:1px solid #d1d5db;

    box-shadow:
        0 12px 32px rgba(0,0,0,.06);

    transition:all .28s ease;
}

.member-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 28px 60px rgba(0,0,0,.12);
}

/* 카드별 상단 컬러 */

.user-card::before,
.company-card::before,
.expert-card::before{
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:6px;
}

.user-card::before{
    background:#64748b;
}

.company-card::before{
    background:#16a34a;
}

.expert-card::before{
    background:#0ea5e9;
}

/* badge */

.member-badge{
    display:inline-block;

    margin-bottom:24px;

    padding:6px 14px;

    border-radius:999px;

    background:#f3f4f6;

    color:#374151;

    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
}

/* 아이콘 */

.member-icon-wrap{
    width:96px;
    height:96px;

    margin:0 auto 26px;

    border-radius:28px;

    background:#f8fafc;

    display:flex;
    align-items:center;
    justify-content:center;
}

.member-icon-wrap img{
    width:52px;
}

/* 제목 */

.member-card-title{
    margin-bottom:16px;

    font-size:24px;
    font-weight:800;

    color:#111827;
}

/* 본문 */

.member-card-text{
    min-height:88px;

    margin-bottom:28px;

    font-size:15px;
    line-height:1.8;

    color:#4b5563;

    word-break:keep-all;
}

/* 버튼 */

.member-btn{
    border-radius:14px;

    padding:12px 20px;

    font-weight:700;
}

/* 모바일 */

@media (max-width:768px){

    .member-card{
        padding:34px 22px;
        border-radius:22px;
    }

    .member-card-title{
        font-size:21px;
    }

    .member-card-text{
        min-height:auto;
        font-size:14px;
    }

    .member-icon-wrap{
        width:82px;
        height:82px;
    }

    .member-icon-wrap img{
        width:46px;
    }
}