/* ===================================
   새로운 섹션 스타일
   =================================== */

/* Hero Section 추가 스타일 - 엘레강트 프리미엄 */
.hero-pretitle {
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    position: relative;
    padding: 0 0 1rem 0;
    display: inline-block;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.hero-pretitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(201, 168, 130, 0.8) 20%, 
        rgba(201, 168, 130, 1) 50%, 
        rgba(201, 168, 130, 0.8) 80%, 
        transparent 100%);
    box-shadow: 0 0 10px rgba(201, 168, 130, 0.5);
}

/* 시니어 건강 이슈 섹션 */
.health-issues {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    padding: var(--spacing-xl) 0;
}

.section-quote {
    font-size: 24px;
    color: var(--color-warm-wood);
    font-weight: 600;
    text-align: center;
    margin: 1rem 0 3rem;
    font-style: italic;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.issue-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.issue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.issue-icon {
    font-size: 48px;
    margin-bottom: 1rem;
}

.issue-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-deep-black);
    margin-bottom: 1rem;
}

.issue-arrow {
    font-size: 32px;
    color: var(--color-warm-wood);
    margin: 1rem 0;
    font-weight: 300;
}

.issue-effects {
    list-style: none;
    padding: 0;
}

.issue-effects li {
    padding: 0.5rem 0;
    font-size: 16px;
    color: var(--color-soft-gray);
    position: relative;
    padding-left: 1.5rem;
}

.issue-effects li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-warm-wood);
    font-weight: bold;
}

.section-conclusion {
    text-align: center;
    font-size: 22px;
    color: var(--color-deep-black);
    margin-top: 3rem;
    line-height: 1.8;
}

/* 기존 솔루션의 한계 섹션 */
.solution-limits {
    background: var(--color-deep-black);
    color: white;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.solution-limits .section-title {
    color: white;
    margin-bottom: 3rem;
}

.limits-content {
    max-width: 900px;
    margin: 0 auto;
}

.limits-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.limit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 18px;
    color: var(--color-soft-gray);
}

.limit-icon {
    font-size: 32px;
}

.limits-divider {
    width: 100px;
    height: 2px;
    background: var(--color-warm-wood);
    margin: 3rem auto;
}

.solution-text {
    font-size: 24px;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.solution-highlight {
    font-size: 28px;
    line-height: 1.8;
    margin-top: 2rem;
}

.highlight-text {
    color: var(--color-warm-wood);
    font-weight: 700;
}

/* 오감 테라피 섹션 */
.five-senses-therapy {
    background: white;
    padding: var(--spacing-xl) 0;
}

.therapy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.therapy-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    border-radius: 24px;
    transition: var(--transition-smooth);
}

.therapy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.therapy-icon {
    font-size: 64px;
    margin-bottom: 1.5rem;
}

.therapy-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-deep-black);
    margin-bottom: 1rem;
}

.therapy-method {
    font-size: 18px;
    color: var(--color-warm-wood);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.therapy-effect {
    font-size: 16px;
    color: var(--color-soft-gray);
    line-height: 1.8;
}

.therapy-system {
    background: linear-gradient(135deg, var(--color-warm-wood) 0%, #D4AF7A 100%);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    margin-top: 4rem;
    color: white;
}

.system-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.system-description {
    font-size: 22px;
    line-height: 1.8;
    opacity: 0.95;
}

/* 하루의 리듬 섹션 */
.daily-rhythm {
    background: linear-gradient(180deg, #1D1D1F 0%, #2C2C2E 100%);
    color: white;
    padding: var(--spacing-xl) 0;
}

.daily-rhythm .section-title {
    color: white;
    text-align: center;
}

.daily-rhythm .section-subtitle {
    text-align: center;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
}

.rhythm-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.rhythm-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: var(--transition-smooth);
}

.rhythm-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
}

.rhythm-time {
    font-size: 18px;
    color: var(--color-warm-wood);
    font-weight: 600;
    margin-bottom: 1rem;
}

.rhythm-icon {
    font-size: 56px;
    margin: 1rem 0;
}

.rhythm-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.rhythm-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.rhythm-keyword {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--color-warm-wood);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* 마무리 CTA 섹션 */
.final-cta {
    background: linear-gradient(135deg, #A8D5BA 0%, #88C0A8 100%);
    padding: calc(var(--spacing-xl) * 1.5) 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.cta-description {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.btn-large {
    font-size: 20px;
    padding: 1.25rem 3rem;
    background: white;
    color: var(--color-deep-black);
    font-weight: 600;
}

.btn-large:hover {
    background: var(--color-deep-black);
    color: white;
}

/* 브랜드 스토리 리스트 */
.story-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.story-list li {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.story-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--color-warm-wood);
    font-size: 16px;
}

/* 오감 테라피 결론 */
.therapy-conclusion {
    text-align: center;
    font-size: 24px;
    color: var(--color-deep-black);
    margin-top: 3rem;
    line-height: 1.8;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hero-pretitle {
        font-size: 16px;
    }
    
    .section-quote {
        font-size: 20px;
    }
    
    .issues-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .limits-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .therapy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-list li {
        font-size: 18px;
        padding-left: 1.5rem;
    }
    
    .therapy-conclusion {
        font-size: 20px;
    }
    
    .therapy-system {
        padding: 2rem;
    }
    
    .system-title {
        font-size: 28px;
    }
    
    .system-description {
        font-size: 18px;
    }
    
    .rhythm-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-description {
        font-size: 18px;
    }
}
