/* 부모용 페이지 스타일 - 노란색 톤 */

:root {
    --parent-primary: #FFD93D;
    --parent-secondary: #FFC837;
    --parent-dark: #333;
    --parent-light: #FFF9E6;
}

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

/* 히어로 섹션 - 부모용 */
.hero.parent-hero {
    background: linear-gradient(180deg, #FFF9E6 0%, #FFFFFF 100%);
    position: relative;
}

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

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

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

.hero-text {
    text-align: left;
}

.hero-text .hero-title,
.hero-text .hero-subtitle {
    text-align: left;
}

.hero-image {
    text-align: center;
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text .hero-title,
    .hero-text .hero-subtitle {
        text-align: center;
    }
}

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

.hero-title.parent-title .highlight {
    color: #FFB800;
    position: relative;
}

.btn-parent-primary {
    background: linear-gradient(135deg, #FFD93D 0%, #FFC837 100%);
    color: #333;
    font-weight: 800;
}

.btn-parent-primary:hover {
    background: linear-gradient(135deg, #FFC837 0%, #FFB800 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 #FFD93D;
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .profile-sample-btn {
        display: block !important;
        margin: 10px auto 0 !important;
        max-width: 200px;
        text-align: center;
        font-size: 13px !important;
        padding: 8px 14px !important;
    }
    
    .info-list li {
        text-align: center;
    }
    
    /* 숨겨진 비용 섹션 모바일 최적화 */
    .benefit-section > div > div {
        padding: 25px 20px !important;
    }
    
    .benefit-section h3 {
        font-size: 20px !important;
    }
    
    .benefit-section div[style*="display: flex"] span {
        font-size: 14px !important;
    }
    
    .benefit-section div[style*="font-size: 18px"] {
        font-size: 16px !important;
    }
    
    /* 혜택 카드 */
    .benefit-grid {
        grid-template-columns: 1fr !important;
        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;
    }
    
    /* 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, #FFF9E6 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(255, 217, 61, 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: #FFF9E6;
    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;
}

/* CTA 섹션 */
.cta-section.parent-cta {
    background: linear-gradient(135deg, #FFD93D 0%, #FFC837 100%);
    padding: 80px 20px;
    text-align: center;
}

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

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

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

/* 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;
}
