/* 그라운딩 철학 섹션 스타일 */

.grounding-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8f5f1 100%);
}

.grounding-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* 인트로 */
.grounding-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.grounding-quote {
    font-size: 24px;
    font-weight: 600;
    color: #2c5f4f;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: 'Nanum Myeongjo', serif;
    font-style: italic;
}

.grounding-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* 그라운딩 카드 그리드 */
.grounding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.grounding-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.grounding-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

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

.grounding-card h3 {
    font-size: 22px;
    color: #2c5f4f;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.grounding-card p strong {
    color: #d4af37;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

/* 그라운딩 효과 */
.grounding-benefits {
    background: linear-gradient(135deg, #2c5f4f 0%, #1a3d33 100%);
    padding: 50px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.grounding-benefits h3 {
    text-align: center;
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 16px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.benefit-item i {
    color: #d4af37;
    font-size: 20px;
    flex-shrink: 0;
}

/* CTA */
.grounding-cta {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
}

.cta-text {
    font-size: 22px;
    color: #2c5f4f;
    font-weight: 600;
    margin-bottom: 25px;
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
}

/* 반응형 */
@media (max-width: 768px) {
    .grounding-section {
        padding: 60px 0;
    }
    
    .grounding-quote {
        font-size: 20px;
    }
    
    .grounding-desc {
        font-size: 14px;
    }
    
    .grounding-grid {
        grid-template-columns: 1fr;
    }
    
    .grounding-card {
        padding: 30px 20px;
    }
    
    .grounding-benefits {
        padding: 30px 20px;
    }
    
    .grounding-benefits h3 {
        font-size: 22px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-text {
        font-size: 18px;
    }
    
    .btn-large {
        padding: 15px 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .grounding-intro {
        padding: 30px 15px;
    }
    
    .grounding-quote {
        font-size: 18px;
    }
    
    .grounding-icon {
        font-size: 36px;
    }
    
    .grounding-card h3 {
        font-size: 20px;
    }
    
    .benefit-item {
        font-size: 14px;
        padding: 12px;
    }
}
