/* Software Downloads Page Styles */

/* Software Grid */
.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.software-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    padding: 32px;
    transition: all 0.3s ease;
}

.software-card:hover {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.software-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.software-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.software-card__icon svg {
    width: 24px;
    height: 24px;
}

.software-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    flex-grow: 1;
}

.software-card__version {
    background: #f0f9ff;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.software-card__description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 16px;
}

.software-card__details {
    margin-bottom: 32px;
}

.software-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.software-detail:last-child {
    border-bottom: none;
}

.software-detail__label {
    font-weight: 600;
    color: #475569;
}

.software-detail__value {
    color: #64748b;
}

.software-card__actions {
    display: flex;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    text-decoration: none;
    color: white;
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

/* Quick Start Steps */
.quick-start-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.quick-start-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.quick-start-step__number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.quick-start-step__content h4 {
    margin: 0 0 8px 0;
    color: #1e293b;
    font-weight: 600;
    font-size: 18px;
}

.quick-start-step__content p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .software-grid {
        grid-template-columns: 1fr;
    }
    
    .software-card {
        padding: 24px;
    }
    
    .quick-start-steps {
        grid-template-columns: 1fr;
    }
}
