.software-detail-container {
    max-width: 1450px;
    margin: 0 auto 48px auto;
    padding: 0 24px;
    font-family: 'Inter', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.software-hero-card {
    background: #074d78;
    color: #ffffff;
    border-radius: 0.5rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.software-hero-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.software-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.software-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.5rem;
    margin: 0;
    color: #ffffff;
    font-family: system-ui, sans-serif;
}

.software-hero-icon img {
    width: 140px;
    height: auto;
    opacity: 0.4;
}

.btn-yellow {
    /*margin-top: 8px;*/
    background: #facc14;
    color: #1a2746;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    max-width: fit-content;
    font-family: system-ui,sans-serif;
}

.btn-yellow:hover {
    background: #fff700;
}

.software-tabs-card {
    background: #ffffff;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.laboratory-tabs {
    display: flex;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.laboratory-tabs .tab-btn {
    background: none;
    border: none;
    padding: 16px 24px;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-family: system-ui, sans-serif;
    font-weight: 500;
    color: #737b8c;
    border-radius: 0;
    transition: color 0.2s ease;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    outline: none;
}

.laboratory-tabs .tab-btn.active {
    color: #2b303b;
    border-bottom-color: #074d78;
}

.laboratory-content-card {
    background: #ffffff;
    border-radius: 0 0 16px 16px;
    padding: 32px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 1.1rem;
    color: #1f2937;
    margin-top: 8px;
}

.tab-content {
    min-height: 220px;
}

.laboratory-description {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 20px;
    font-family: system-ui, sans-serif;
}

.laboratory-description b {
    color: #2b303b;
    font-weight: 600;
    font-size: 1rem;
}

.laboratory-description span {
    color: #737b8c;
    font-family: system-ui, sans-serif;
    font-size: 1rem;
    text-transform: none;
}

.laboratory-link {
    color: #074d78;
    text-decoration: none;
    font-family: system-ui, sans-serif;
    font-size: 1rem;
}

.laboratory-link:hover,
.laboratory-link:focus,
.laboratory-link:active,
.laboratory-link:visited {
    text-decoration: underline;
    color: #074d78;
}

.software-map {
    margin-top: 12px;
}

.back-link-wrapper {
    display: flex;
    justify-content: flex-start;
}

.back-link {
    color: #074d78;
    text-decoration: none;
    font-family: system-ui, sans-serif;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 8px 10px;
    border-radius: 0.5rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.back-link-icon {
    width: 18px;
    height: 18px;
}

.back-link:hover {
    background: #facc14;
    color: #074d78;
}

@media (max-width: 900px) {
    .software-detail-container {
        padding: 12px 2vw;
    }

    .software-hero-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}

.device-info-row {
    display: flex;
    gap: 6px;
    line-height: 1.3;
    font-family: system-ui, sans-serif;
}

.device-info-row b {
    color: #2b303b;
    font-weight: 600;
}

.device-info-row span {
    color: #737b8c;
}

.device-info-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
