@charset "utf-8";

.navArea nav ul {padding:8px 0; background-color: rgba(238, 238, 238, 0.5); border-radius: 8px;}
.navArea nav ul li a {color:#505050;}

.sub-visualArea .contentBox {margin-top:50px; width:80%; max-width:1200px;}
.sub-visualArea .contentBox h1 {color:#505050; font-size:1.2rem;}
.sub-visualArea .contentBox p { font-size:1rem;}

/* 공통 섹션 스타일 */
.disease-section {
    padding: 80px 0;
    position: relative;
}

.disease-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-number {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: #eff6ff;
    border-radius: 20px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 30px;
    text-align: center;
}

.section-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
    text-align: center;
    margin-bottom: 40px;
}

.section-conclusion {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #334155;
    text-align: center;
    margin-top: 30px;
}

/* #1. 다한증은 흔한 질환입니다 */
.disease-common {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.highlight-stat {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-main {
    font-size: 5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 15px;
    line-height: 1;
}

.stat-subtitle {
    font-size: 1.3rem;
    color: #475569;
    line-height: 1.6;
}

.info-box {
    background: #f1f5f9;
    padding: 30px;
    border-radius: 16px;
    margin-top: 30px;
    border-left: 4px solid #3b82f6;
}

.info-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155;
    margin: 0;
}

/* #2. 가장 흔한 부위는 '겨드랑이'입니다 */
.disease-area {
    background: #ffffff;
}

.stats-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.stat-value {
    font-size: 4rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 20px;
    line-height: 1;
}

.stat-label {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

/* #3. 한국의 보고율은 매우 낮습니다 */
.disease-korea {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.comparison-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.comparison-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-item.korea {
    border-top: 5px solid #ef4444;
}

.comparison-item.other {
    border-top: 5px solid #10b981;
}

.comparison-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.comparison-value {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1;
}

.comparison-item.korea .comparison-value {
    color: #ef4444;
}

.comparison-item.other .comparison-value {
    color: #10b981;
}

.comparison-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

/* #4. 인식의 변화가 치료의 시작입니다 */
.disease-recognition {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.reason-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.reason-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.reason-percent {
    font-size: 4rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 15px;
    line-height: 1;
}

.reason-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
}

.cta-box {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* #5. 다한증은 질환입니다 */
.disease-definition {
    background: #ffffff;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #3b82f6;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

.why-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e5e7eb;
}

.why-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 20px;
}

.why-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    text-align: center;
    margin-bottom: 40px;
}

.classification-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.classification-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-top: 5px solid;
}

.classification-card.primary {
    border-top-color: #3b82f6;
}

.classification-card.secondary {
    border-top-color: #10b981;
}

.classification-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.classification-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 25px;
}

.classification-detail {
    margin-bottom: 25px;
}

.classification-detail h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.body-parts,
.causes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.body-parts li,
.causes-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.body-parts li::before,
.causes-list li::before {
    content: '•';
    color: #3b82f6;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 3px;
}

.note {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    font-style: italic;
    margin-top: 10px;
}

.age-info,
.feature-info {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* #6. 다한증은 언제부터 시작될까요? */
.disease-age {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.age-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.timeline-item {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.timeline-age {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 15px;
    line-height: 1.4;
}

.timeline-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

.stats-box {
    margin: 40px 0;
}

.stat-item-large {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number-large {
    font-size: 5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 20px;
    line-height: 1;
}

.stat-text-large {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
}

.age-chart {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
    align-items: flex-end;
    height: 300px;
}

.chart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.chart-bar {
    width: 100%;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 8px 8px 0 0;
    margin-bottom: 15px;
    min-height: 40px;
    transition: transform 0.3s ease;
    height: 0;
}

.chart-item:hover .chart-bar {
    transform: scaleY(1.1);
}

.chart-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.chart-desc {
    font-size: 0.85rem;
    color: #64748b;
}

/* #7. 다한증은 가족력과 관련이 있습니다 */
.disease-family {
    background: #ffffff;
}

.family-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.family-stat-item {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.family-stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 20px;
    line-height: 1;
}

.family-stat-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

.hope-box {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
    border-left: 5px solid #3b82f6;
}

.hope-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #1e293b;
    margin: 0;
    font-weight: 500;
}

/* #8. 다한증은 일년 내내 영향을 받습니다 */
.disease-year {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.year-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.year-stat-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.year-stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 20px;
    line-height: 1;
}

.year-stat-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

.warning-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    margin-top: 40px;
    border-left: 5px solid #ef4444;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.warning-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.warning-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warning-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.warning-list li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-size: 1.2rem;
}

/* #9. 다한증은 스트레스의 영향을 받습니다 */
.disease-stress {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
}

.quote-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #8b5cf6;
}

.quote-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #1e293b;
    font-style: italic;
    margin: 0;
    font-weight: 500;
}

.tips-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.tips-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 1.3rem;
    font-weight: 700;
}

.final-message {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.final-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

/* 스크롤 애니메이션 */
.stat-card,
.comparison-item,
.reason-item,
.info-card,
.classification-card,
.timeline-item,
.stat-item-large,
.family-stat-item,
.year-stat-item,
.warning-box,
.quote-box,
.tips-box {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.stat-card.visible,
.comparison-item.visible,
.reason-item.visible,
.info-card.visible,
.classification-card.visible,
.timeline-item.visible,
.stat-item-large.visible,
.family-stat-item.visible,
.year-stat-item.visible,
.warning-box.visible,
.quote-box.visible,
.tips-box.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }

    .stat-main {
        font-size: 3.5rem;
    }

    .stat-subtitle {
        font-size: 1.1rem;
    }

    .stats-grid-two,
    .comparison-box,
    .reason-stats,
    .info-cards,
    .classification-grid,
    .age-timeline,
    .family-stats,
    .year-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-value,
    .reason-percent,
    .family-stat-number,
    .year-stat-number {
        font-size: 3rem;
    }

    .stat-number-large {
        font-size: 3.5rem;
    }

    .age-chart {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        gap: 15px;
    }

    .chart-item {
        height: 200px;
    }

    .cta-text,
    .final-text {
        font-size: 1.4rem;
    }

    .quote-text {
        font-size: 1.2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .stats-grid-two,
    .comparison-box,
    .reason-stats {
        gap: 25px;
    }
}
