/* 치료사용 페이지 스타일 - 청록색 톤 */

:root {
    --therapist-primary: #4ECDC4;
    --therapist-secondary: #44B8B0;
    --therapist-dark: #333;
    --therapist-light: #E8F8F7;
}

body.therapist-page {
    background: linear-gradient(180deg, #F0FFFE 0%, #FFFFFF 100%);
}

/* 히어로 섹션 - 치료사용 */
.hero.therapist-hero {
    background: linear-gradient(180deg, #E8F8F7 0%, #FFFFFF 100%);
    position: relative;
}

.hero.therapist-hero > * {
    position: relative;
    z-index: 1;
}

.hero.therapist-hero::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.3) 0%, transparent 70%);
    z-index: 0;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 100% !important;
    }
}

.hero-title.therapist-title {
    color: #333;
}

.hero-title.therapist-title .highlight {
    color: #4ECDC4;
    position: relative;
}

.btn-therapist-primary {
    background: linear-gradient(135deg, #4ECDC4 0%, #44B8B0 100%);
    color: white;
    font-weight: 800;
}

.btn-therapist-primary:hover {
    background: linear-gradient(135deg, #44B8B0 0%, #3AA8A0 100%);
}

/* 문제 섹션 */
.problem-section {
    background: white;
    padding: 60px 20px;
}

.problem-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    background: #F8F9FA;
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    border-left: 4px solid #4ECDC4;
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .calculator-section h2 {
        font-size: 28px !important;
    }
    
    .calculator-section p {
        font-size: 16px !important;
    }
    
    .calculator-section table {
        font-size: 13px;
    }
    
    .calculator-section table th,
    .calculator-section table td {
        padding: 12px 8px !important;
        font-size: 13px !important;
    }
    
    .calculator-section table strong {
        font-size: 16px !important;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .benefit-card {
        padding: 25px 18px !important;
    }
    
    .benefit-card h3 {
        font-size: 16px !important;
    }
    
    .benefit-card p {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }
    
    .income-example {
        font-size: 14px;
    }
    
    /* 테이블 스크롤 래퍼 */
    .calculator-section > div > div[style*="overflow-x"] {
        margin: 0 -20px;
        padding: 0 20px;
    }
    
    /* 수입 예시 카드 */
    .calculator-section > div > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .calculator-section > div > div[style*="display: grid"] > div {
        padding: 25px 20px !important;
    }
    
    /* 비교 박스 */
    .calculator-section div[style*="background: linear-gradient(135deg, #FFF9E6"] {
        padding: 20px 15px !important;
        margin: 30px 0 !important;
    }
    
    .calculator-section div[style*="background: linear-gradient(135deg, #FFF9E6"] h4 {
        font-size: 18px !important;
    }
    
    .calculator-section div[style*="background: linear-gradient(135deg, #FFF9E6"] div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* 요구사항 섹션 */
    section[style*="background: linear-gradient(135deg, #F8F9FA"] {
        padding: 50px 20px !important;
    }
    
    section[style*="background: linear-gradient(135deg, #F8F9FA"] h2 {
        font-size: 28px !important;
    }
    
    section[style*="background: linear-gradient(135deg, #F8F9FA"] h3 {
        font-size: 18px !important;
    }
    
    section[style*="background: linear-gradient(135deg, #F8F9FA"] > div > div {
        grid-template-columns: 1fr !important;
    }
    
    /* FAQ 섹션 */
    .faq-item {
        padding: 0 15px 15px !important;
        margin: 15px 0 !important;
    }
    
    .faq-question {
        font-size: 16px !important;
    }
    
    .faq-answer {
        font-size: 14px !important;
    }
    
    /* 일정 안내 */
    .schedule-info {
        font-size: 14px !important;
    }
    
    .schedule-info div[style*="font-size: 20px"] {
        font-size: 18px !important;
    }
    
    .schedule-info div[style*="font-size: 18px"] {
        font-size: 16px !important;
    }
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.problem-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* 솔루션 섹션 */
.solution-section {
    background: linear-gradient(180deg, #E8F8F7 0%, #FFFFFF 100%);
    padding: 60px 20px;
}

.solution-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.solution-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-item {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(78, 205, 196, 0.15);
    transition: transform 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
}

.solution-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.solution-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.solution-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* 혜택 섹션 */
.benefit-section {
    background: white;
    padding: 60px 20px;
}

.benefit-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card {
    background: #E8F8F7;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
}

.benefit-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
}

/* 수입 계산기 섹션 */
.calculator-section {
    background: linear-gradient(135deg, #4ECDC4 0%, #44B8B0 100%);
    padding: 60px 20px;
}

.calculator-section h2,
.calculator-section p {
    color: white;
}

.calculator-section table {
    color: #333;
}

.calculator-section table th,
.calculator-section table td {
    color: #333 !important;
}

.calculator-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.calculator-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    margin: 30px auto;
    color: #333;
}

.income-example {
    text-align: left;
    margin: 20px 0;
}

.income-example h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #4ECDC4;
}

.income-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.income-row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 20px;
    color: #4ECDC4;
    padding-top: 20px;
    border-top: 2px solid #4ECDC4;
}

/* CTA 섹션 */
.cta-section.therapist-cta {
    background: linear-gradient(135deg, #4ECDC4 0%, #44B8B0 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
}

.promotion-badge {
    background: white;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: #4ECDC4;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white {
    background: white;
    color: #4ECDC4;
    font-weight: 800;
}

.btn-white:hover {
    background: #f0f0f0;
}

/* FAQ 섹션 */
.faq-section {
    background: white;
    padding: 60px 20px;
}

.faq-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

.faq-item {
    max-width: 700px;
    margin: 20px auto;
    text-align: left;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}
