.model-details-page {
    position: relative;
    overflow: hidden;
    background-color: #111827;
}

.model-details-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.model-card {
    background: rgba(31, 41, 55, 0.7);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.model-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(16, 185, 129, 0.2);
}

.model-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.model-card:hover .model-icon-container {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.1);
}

.model-icon {
    font-size: 1.75rem;
    color: #10B981;
    transition: all 0.3s ease;
}

.model-card:hover .model-icon {
    transform: scale(1.2) rotateY(20deg);
    color: #34D399;
}

.model-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.model-description {
    color: #D1D5DB;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.model-stats {
    background: rgba(17, 24, 39, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #9CA3AF;
    text-transform: capitalize;
}

.process-timeline {
    position: relative;
    padding: 3rem 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.6), rgba(16, 185, 129, 0.2));
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111827;
    border: 2px solid #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 1rem;
}

.step-title {
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #9CA3AF;
    text-align: center;
    font-size: 0.875rem;
}

.partner-card {
    background: rgba(31, 41, 55, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.partner-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
}

.partner-name {
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.partner-description {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.cta-section {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-top: 3rem;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.model-3d-container {
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    margin-bottom: 3rem;
}

.model-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(17, 24, 39, 0.5) 0%, rgba(17, 24, 39, 0.8) 100%);
    padding: 2rem;
}

.model-overlay-content {
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    max-width: 500px;
}

.model-overlay-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.model-overlay-icon i {
    font-size: 2rem;
    color: #10B981;
}

.model-overlay-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.model-overlay-description {
    color: #9CA3AF;
}

@media (max-width: 768px) {
    .model-stats {
        grid-template-columns: 1fr;
    }
    
    .timeline-line {
        display: none;
    }
    
    .process-timeline {
        padding: 0;
    }
    
    .timeline-step {
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
