/* Future Therapy Slide Styles */
.future-therapy-slide {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.future-therapy-slide::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 167, 204, 0.05) 0%, transparent 70%);
    animation: rotate-slow 30s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.future-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Header Section */
.future-header {
    text-align: center;
    margin-bottom: 60px;
}

.future-title {
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-artemed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.future-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Future Concepts Grid */
.future-concepts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* Concept Card */
.future-concept {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.future-concept:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(123, 167, 204, 0.25);
}

.future-concept::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-artemed);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.future-concept:hover::before {
    transform: scaleX(1);
}

/* Concept Icon */
.concept-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(123, 167, 204, 0.1) 0%, rgba(123, 167, 204, 0.2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.future-concept:hover .concept-icon {
    transform: rotate(10deg) scale(1.1);
    background: var(--gradient-artemed);
}

/* Concept Content */
.concept-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.concept-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Feature Tags */
.concept-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    font-size: 13px;
    padding: 6px 12px;
    background: rgba(123, 167, 204, 0.1);
    color: var(--artemed-blue);
    border-radius: 20px;
    font-weight: 600;
}

/* Timeline Section */
.future-timeline {
    background: var(--background-card);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.timeline-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
}

/* Timeline Items */
.timeline-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 20px;
}

.timeline-items::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--artemed-blue) 0%, 
        var(--artemed-lightblue) 50%, 
        var(--accent-green) 100%);
    transform: translateY(-50%);
}

.timeline-item {
    position: relative;
    text-align: center;
    flex: 1;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: white;
    border: 4px solid var(--artemed-blue);
    border-radius: 50%;
    margin: 0 auto 12px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    border-color: var(--accent-green);
}

.timeline-year {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.timeline-label {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.timeline-detail {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Animations */
.future-concept {
    opacity: 0;
    animation: fadeInScale 0.8s ease forwards;
}

.future-concept:nth-child(1) { animation-delay: 0.1s; }
.future-concept:nth-child(2) { animation-delay: 0.2s; }
.future-concept:nth-child(3) { animation-delay: 0.3s; }
.future-concept:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Special Effects */
.digital-twin-visual {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    opacity: 0.1;
}

.digital-twin-visual::before,
.digital-twin-visual::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--artemed-blue);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

.digital-twin-visual::after {
    animation-delay: 1s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Ethics Section */
.ethics-focus {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(123, 167, 204, 0.05) 0%, rgba(123, 167, 204, 0.1) 100%);
    border-radius: 20px;
    text-align: center;
}

.ethics-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.ethics-principles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.principle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

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

.principle-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.ethics-footnote {
    font-size: 12px;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Strong emphasis for real examples */
.concept-description strong {
    color: var(--artemed-blue);
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .future-concepts {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .future-title {
        font-size: 48px;
    }
    
    .timeline-items {
        flex-direction: column;
        gap: 30px;
    }
    
    .timeline-items::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 4px;
        height: 80%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .future-content {
        padding: 40px 20px;
    }
    
    .future-title {
        font-size: 36px;
    }
    
    .future-subtitle {
        font-size: 18px;
    }
    
    .concept-title {
        font-size: 22px;
    }
    
    .future-concept {
        padding: 30px 24px;
    }
    
    .concept-icon {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }
    
    .ethics-principles {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}