/* ========================================
   Consultant Page — 상담
   ======================================== */

.cs-page {
    background: #0B1120;
    min-height: 100vh;
    font-family: var(--font-family);
    color: #E2E8F0;
}

/* --- Hero --- */
.cs-hero {
    padding: 140px 0 48px;
    text-align: center;
    background: linear-gradient(180deg, #0F172A 0%, #0B1120 100%);
    position: relative;
    overflow: hidden;
}

.cs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.25);
    color: #93B4FF;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 9999px;
    margin-bottom: 20px;
}

.cs-hero h1 {
    font-size: 38px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}

.cs-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* --- CTA Cards --- */
.cs-cta-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cs-cta-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.cs-cta-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cs-cta-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.cs-cta-icon.blue { background: rgba(37, 99, 235, 0.15); color: #93B4FF; }
.cs-cta-icon.green { background: rgba(16, 185, 129, 0.15); color: #6EE7B7; }
.cs-cta-icon.purple { background: rgba(99, 102, 241, 0.15); color: #A5B4FC; }

.cs-cta-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.cs-cta-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cs-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.2s;
}

.cs-cta-card:hover .cs-cta-link {
    gap: 10px;
}

/* --- Consultation List --- */
.cs-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 64px;
}

.cs-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cs-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
}

.cs-section-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Login Required --- */
.cs-login-required {
    text-align: center;
    padding: 80px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}

.cs-login-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: rgba(37, 99, 235, 0.5);
}

.cs-login-required h3 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.cs-login-required p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 28px;
    line-height: 1.6;
}

.cs-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-family);
}

.cs-login-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

/* --- Process Steps --- */
.cs-steps {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 64px;
}

.cs-steps-title {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
}

.cs-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
}

.cs-step {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    position: relative;
}

.cs-step-num {
    width: 36px;
    height: 36px;
    margin: 0 auto 16px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #93B4FF;
}

.cs-step h4 {
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.cs-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.cs-step-arrow {
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.15);
    font-size: 14px;
    z-index: 1;
}

/* --- FAQ Section --- */
.cs-faq {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 64px;
}

.cs-faq-title {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 32px;
}

.cs-faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
}

.cs-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s;
    gap: 12px;
}

.cs-faq-q:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.02);
}

.cs-faq-q i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.cs-faq-item.open .cs-faq-q i {
    transform: rotate(180deg);
}

.cs-faq-a {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.cs-faq-item.open .cs-faq-a {
    padding: 0 20px 18px;
    max-height: 200px;
}

.cs-faq-a p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 1023px) {
    .cs-cta-grid {
        grid-template-columns: 1fr;
    }

    .cs-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cs-step-arrow {
        display: none;
    }
}

@media (max-width: 767px) {
    .cs-hero {
        padding: 110px 0 32px;
    }

    .cs-hero h1 {
        font-size: 24px;
    }

    .cs-steps-grid {
        grid-template-columns: 1fr;
    }
}
