/* ===================================
   Support Program Page – support.css v2.0
   =================================== */

/* Hero – logo image */
.sp-hero {
    margin-top: 140px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 40px 60px;
}

.sp-hero img {
    max-width: 680px;
    width: 100%;
    height: auto;
    display: block;
}

/* Page wrapper */
.sp-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 120px;
}

/* Intro section */
.sp-intro {
    text-align: center;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.sp-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sp-program-name {
    font-family: 'Pretendard', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin-bottom: 28px;
}

.sp-recruit {
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #444;
    line-height: 1.7;
}

.sp-recruit strong {
    font-weight: 700;
    color: #1a1a1a;
}

/* Description */
.sp-description {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.sp-description p {
    font-family: 'Pretendard', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #555;
    line-height: 2;
    letter-spacing: -0.2px;
    margin-bottom: 28px;
}

.sp-description p:last-child {
    margin-bottom: 0;
}

.sp-description strong {
    font-weight: 700;
    color: #1a1a1a;
}

/* Info cards – 3 columns */
.sp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 70px;
}

.sp-card {
    border: 1px solid #e5e5e5;
    padding: 52px 40px;
    margin-left: -1px;
    margin-top: -1px;
    transition: background 0.25s ease;
}

.sp-card:hover {
    background: #fafafa;
}

.sp-card-icon {
    margin-bottom: 28px;
    line-height: 1;
}

.sp-card-icon svg {
    display: block;
    width: 48px;
    height: 48px;
}

.sp-card h3 {
    font-family: 'Pretendard', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 28px;
    letter-spacing: -0.2px;
}

.sp-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sp-card ul li {
    font-family: 'Pretendard', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 18px;
}

.sp-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C5A55A;
}

.sp-card ul li:last-child {
    border-bottom: none;
}

/* CTA section */
.sp-cta {
    margin-top: 80px;
    text-align: center;
    padding: 70px 40px;
    background: #1a1a1a;
}

.sp-cta-label {
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #999;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.sp-cta-btn {
    display: inline-block;
    padding: 20px 70px;
    background: #E53935;
    color: #fff;
    text-decoration: none;
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.sp-cta-btn:hover {
    background: #C62828;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229, 57, 53, 0.3);
}

.sp-cta-email {
    font-family: 'Pretendard', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #888;
    letter-spacing: 0.5px;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 768px) {
    .sp-hero {
        margin-top: 120px;
        padding: 60px 24px 40px;
    }

    .sp-hero img {
        max-width: 400px;
    }

    .sp-page {
        padding: 0 24px 80px;
    }

    .sp-program-name {
        font-size: 32px;
    }

    .sp-recruit {
        font-size: 17px;
    }

    .sp-description p {
        font-size: 16px;
    }

    .sp-description p br {
        display: none;
    }

    .sp-cards {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .sp-card {
        padding: 36px 28px;
        margin-left: 0;
    }

    .sp-card h3 {
        font-size: 20px;
    }

    .sp-cta {
        margin-top: 60px;
        padding: 50px 24px;
    }
}

@media (max-width: 480px) {
    .sp-hero {
        margin-top: 110px;
        padding: 40px 20px 30px;
    }

    .sp-hero img {
        max-width: 300px;
    }

    .sp-page {
        padding: 0 20px 60px;
    }

    .sp-intro {
        padding-bottom: 40px;
    }

    .sp-title {
        font-size: 15px;
    }

    .sp-program-name {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .sp-recruit {
        font-size: 16px;
    }

    .sp-description {
        padding: 40px 0;
    }

    .sp-description p {
        font-size: 15px;
    }

    .sp-card {
        padding: 30px 22px;
    }

    .sp-card h3 {
        font-size: 18px;
    }

    .sp-card ul li {
        font-size: 14px;
    }

    .sp-cta {
        padding: 40px 20px;
    }

    .sp-cta-btn {
        padding: 16px 48px;
        font-size: 16px;
    }
}
