/* Investment & Partnership Slide Redesign */
.investment-overview {
    margin-top: 40px;
}

/* Main Investment Box */
.investment-main {
    background: linear-gradient(135deg, rgba(123, 167, 204, 0.05) 0%, rgba(123, 167, 204, 0.1) 100%);
    border: 2px solid var(--artemed-blue);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.investment-header h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.investment-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.investment-price-box {
    margin: 32px 0;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.currency {
    font-size: 36px;
    font-weight: 500;
    color: var(--artemed-blue);
}

.price-value {
    font-size: 72px;
    font-weight: 700;
    background: var(--gradient-artemed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.price-period {
    font-size: 24px;
    color: var(--text-secondary);
    font-weight: 400;
}

.price-note {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

/* Details Grid */
.investment-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.detail-section {
    background: var(--background-card);
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.detail-section h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-section .icon {
    font-size: 24px;
}

.detail-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-section li {
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.detail-section li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--artemed-blue);
    font-weight: bold;
}

/* Timeline */
.investment-timeline {
    background: var(--background-secondary);
    padding: 32px;
    border-radius: 16px;
    margin-top: 40px;
}

.investment-timeline h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
}

.timeline-bar {
    position: relative;
    height: 80px;
    margin: 0 40px;
}

.timeline-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gray-300);
    transform: translateY(-50%);
}

.timeline-progress {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--artemed-blue);
    transform: translateY(-50%);
    animation: progressGrow 3s ease-out forwards;
}

@keyframes progressGrow {
    to { width: 100%; }
}

.timeline-milestone {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.milestone-dot {
    display: block;
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid var(--artemed-blue);
    border-radius: 50%;
    margin: 0 auto 8px;
}

.milestone-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.milestone-time {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .investment-details {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .investment-main {
        padding: 32px 24px;
    }
    
    .price-value {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .investment-header h3 {
        font-size: 24px;
    }
    
    .investment-subtitle {
        font-size: 16px;
    }
    
    .price-value {
        font-size: 48px;
    }
    
    .currency {
        font-size: 28px;
    }
    
    .timeline-bar {
        margin: 0 20px;
    }
    
    .milestone-label {
        font-size: 12px;
    }
}