------
## 最终结论
```python
def add_nested_tuples(tuple1, tuple2):
    result = tuple((a + c, b + d) for (a, b), (c, d) in zip(tuple1, tuple2))
    return result
```